Skip to content

Commit

Permalink
Fix workflow run syntax [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
FeeeeK committed Jan 7, 2024
1 parent 63013e2 commit a9baa01
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,10 @@ jobs:
if: env.STOP_WORKFLOW == 'false'
env:
GH_TOKEN: ${{ secrets.GH_PAT }}
run: >
gh release create ${{ env.VERSION }}
--title "Release ${{ env.VERSION }}"
--draft
./publish/DLL-Release/LCAmmoCheck.dll
run: |
gh release create ${{ env.VERSION }} \
--title "Release ${{ env.VERSION }}" \
--notes "" \
--draft \
./publish/DLL-Release/LCAmmoCheck.dll \
./publish/Thunderstore-Release/LCAmmoCheck-${{ env.VERSION }}.zip

0 comments on commit a9baa01

Please sign in to comment.