Skip to content

Commit

Permalink
Fix publish script
Browse files Browse the repository at this point in the history
  • Loading branch information
FrozenAlex committed Apr 27, 2023
1 parent 6451b88 commit 3286fc9
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 @@ -77,7 +77,7 @@ jobs:
- name: Calculate SHA-256 of the qmod file
id: qmodsha
run: |
echo "QMOD_SHA=$(sha256sum ./${{ env.qmodName }}.qmod | grep -Po "^[0-9a-f]+")" >> $GITHUB_ENV
echo "QMOD_SHA=$(sha256sum ./mods/${{ env.qmodName }}.qmod | grep -Po "^[0-9a-f]+")" >> $GITHUB_ENV
- name: Release
uses: softprops/action-gh-release@v1
Expand All @@ -93,7 +93,7 @@ jobs:
SHA-256: ${{ env.QMOD_SHA }}
Build ID: ${{ env.BUILD_ID }}
files: |
./${{ env.qmodName }}.qmod
./mods/${{ env.qmodName }}.qmod
./build/${{ env.LIBNAME }}
./build/debug/debug_${{ env.LIBNAME }}
draft: true
Expand Down

0 comments on commit 3286fc9

Please sign in to comment.