Skip to content

Commit

Permalink
try harder to do bash
Browse files Browse the repository at this point in the history
  • Loading branch information
dsschult committed Nov 29, 2023
1 parent d0d97f5 commit ca7ac3d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,10 @@ jobs:
if: ${{ startsWith( github.ref_name , 'v') }}
id: tag
run: |
export TAG="${{ github.ref_name }}"
echo "tag=${TAG:1}" >> "$GITHUB_OUTPUT"
TAG="${{ github.ref_name }}"
TAG2=${TAG:1}
echo "tag=$TAG2"
echo "tag=$TAG2" >> "$GITHUB_OUTPUT"
- name: Build and push (Tag)
if: ${{ startsWith( github.ref_name , 'v') }}
Expand Down

0 comments on commit ca7ac3d

Please sign in to comment.