Skip to content

Commit

Permalink
Fix variable naming
Browse files Browse the repository at this point in the history
  • Loading branch information
SkoggsTrollet committed Jul 23, 2021
1 parent 573d122 commit 4034760
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ jobs:
run: echo "FILENAME=NeoMori_${GITHUB_REF/refs\/tags\//}\_${{ matrix.platform }}" >> $GITHUB_ENV

- name: Zip client
run: zip -q -r ${{ FILENAME }}.zip NeoMori
run: zip -q -r ${{ env.FILENAME }}.zip NeoMori

- name: Publish clients
uses: softprops/action-gh-release@v1
with:
files: ${{ FILENAME }}.zip
files: ${{ env.FILENAME }}.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 4034760

Please sign in to comment.