Skip to content

Commit

Permalink
github.ref_name, not env.ref_name (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
malcolmstill authored Nov 6, 2022
1 parent 1e04063 commit 19c0647
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
- uses: actions/upload-artifact@v3
if: ${{ matrix.target != 'x86_64-windows' }}
with:
name: clerk-${{ env.ref_name }}-${{matrix.target}}
name: clerk-${{ github.ref_name }}-${{matrix.target}}
path: zig-out/bin/clerk
- uses: actions/upload-artifact@v3
if: ${{ matrix.target == 'x86_64-windows' }}
with:
name: clerk-${{ env.ref_name }}-${{matrix.target}}
path: zig-out/bin/clerk.exe
name: clerk-${{ github.ref_name }}-${{matrix.target}}
path: zig-out/bin/clerk.exe

0 comments on commit 19c0647

Please sign in to comment.