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 8cb199a commit 8451908
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/release_created.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ jobs:
needs: [pyinstaller-build]
steps:
- uses: actions/download-artifact@v3
- name: Display structure of downloaded files
run: ls -alR
- name: Zip MacOS Build
run: cd RBSAgent-mac && zip -r9 RBSAgent RBSAgent.app
- name: Display structure of downloaded files
run: ls -alR
# - name: Zip MacOS output
Expand All @@ -66,11 +70,11 @@ jobs:
# - name: Display structure of downloaded files
# run: ls -alR

# - uses: shogo82148/actions-upload-release-asset@v1
# with:
# upload_url: ${{ github.event.release.upload_url }}
# asset_path: ./RBSAgent*
# overwrite: true
- uses: shogo82148/actions-upload-release-asset@v1
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./RBSAgent.*
overwrite: true

# - name: Upload Release Asset Windows
# uses: actions/[email protected]
Expand Down

0 comments on commit 8451908

Please sign in to comment.