Skip to content

Commit

Permalink
ci: fix zip action
Browse files Browse the repository at this point in the history
- move exe to cwd because the artifact preserves the dist/ path when uploading and downloading
  • Loading branch information
vile committed May 16, 2024
1 parent 93af911 commit 44853ec
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ jobs:
name: windows-release

- name: Zip Files
run: zip -r windows-release.zip DiscordRoleScraper.exe config.toml
run: |
mv dist/DiscordRoleScraper.exe .
zip -r windows-release.zip DiscordRoleScraper.exe config.toml
- name: Create Release with Zipped Build
uses: softprops/action-gh-release@v2
Expand Down

0 comments on commit 44853ec

Please sign in to comment.