Skip to content

Commit

Permalink
Remove unnecessary escape characters
Browse files Browse the repository at this point in the history
Fixes #121
  • Loading branch information
SkoggsTrollet committed Aug 5, 2021
1 parent 903aba8 commit 4cb9905
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 @@ -28,7 +28,7 @@ jobs:
run: sed -i "s#global/version\s*=.*#global/version=\"${GITHUB_REF/refs\/tags\//}\"#g" NeoMori/override.cfg

- name: Set filename
run: echo "FILENAME=NeoMori-${GITHUB_REF/refs\/tags\//}\-${{ matrix.platform }}" >> $GITHUB_ENV
run: echo "FILENAME=NeoMori-${GITHUB_REF/refs\/tags\//}-${{ matrix.platform }}" >> $GITHUB_ENV

- name: Zip client
run: zip -q -r ${{ env.FILENAME }}.zip NeoMori
Expand All @@ -48,5 +48,5 @@ jobs:
ITCH_GAME: neomori
ITCH_USER: eficode
PACKAGE: ${{ env.FILENAME }}.zip
VERSION: ${GITHUB_REF/refs\/tags\//}\
VERSION: ${GITHUB_REF/refs\/tags\//}

0 comments on commit 4cb9905

Please sign in to comment.