Skip to content

Commit 9c5c6c9

Browse files
authored
Merge pull request #21 from FrozenAlex/master
Fix publish script
2 parents 3c3fdea + 5d85641 commit 9c5c6c9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@ jobs:
7575
run: |
7676
pwsh -Command ./createqmod.ps1 ${{env.qmodName}}
7777
78+
- name: Rename debug file
79+
run: mv "./build/debug/${{ steps.libname.outputs.NAME }}" "./build/debug/debug_${{ steps.libname.outputs.NAME }}"
80+
7881
- name: Upload to Release
7982
id: upload_file_release
8083
uses: softprops/[email protected]
@@ -83,7 +86,7 @@ jobs:
8386
tag_name: ${{ github.event.inputs.version }}
8487
files: |
8588
./build/${{ steps.libname.outputs.NAME }}
86-
./build/debug/${{ steps.libname.outputs.NAME }}
89+
./build/debug/debug_${{ steps.libname.outputs.NAME }}
8790
./${{ env.qmodName }}.qmod
8891
env:
8992
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)