Skip to content

Commit

Permalink
Merge pull request #21 from FrozenAlex/master
Browse files Browse the repository at this point in the history
Fix publish script
  • Loading branch information
sc2ad committed Oct 18, 2023
2 parents 3c3fdea + 5d85641 commit 9c5c6c9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ jobs:
run: |
pwsh -Command ./createqmod.ps1 ${{env.qmodName}}
- name: Rename debug file
run: mv "./build/debug/${{ steps.libname.outputs.NAME }}" "./build/debug/debug_${{ steps.libname.outputs.NAME }}"

- name: Upload to Release
id: upload_file_release
uses: softprops/action-gh-release@v0.1.15
Expand All @@ -83,7 +86,7 @@ jobs:
tag_name: ${{ github.event.inputs.version }}
files: |
./build/${{ steps.libname.outputs.NAME }}
./build/debug/${{ steps.libname.outputs.NAME }}
./build/debug/debug_${{ steps.libname.outputs.NAME }}
./${{ env.qmodName }}.qmod
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 9c5c6c9

Please sign in to comment.