Skip to content
This repository has been archived by the owner on Feb 15, 2024. It is now read-only.

Commit

Permalink
Fix asset upload on release
Browse files Browse the repository at this point in the history
  • Loading branch information
sniper7kills committed Nov 28, 2023
1 parent cbababe commit 3684125
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release_created.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,15 @@ jobs:
upload_exe_with_name: ${{matrix.output}} # Adjust the desired artifact name
options: --onefile, --name "RBSAgent", --windowed
upload-release-assets:
permissions: write-all
runs-on: ubuntu-latest
needs: [pyinstaller-build]
steps:
- uses: actions/download-artifact@v3
- name: Display structure of downloaded files
run: ls -alR
- name: Zip MacOS output
run: zip -r9 RBSAgent RBSAgent.app/
run: zip -r9 RBSAgent RBSAgent.app/ && mv RBSAgent.zip RBSAgent.app.zip
- name: Display structure of downloaded files
run: ls -alR
- name: Upload Release Asset Windows
Expand Down

0 comments on commit 3684125

Please sign in to comment.