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

Commit

Permalink
Merge pull request #6 from RunbookSolutions/staging
Browse files Browse the repository at this point in the history
Fix asset upload on release
  • Loading branch information
sniper7kills authored Nov 28, 2023
2 parents 93743da + d9ddf77 commit 431508f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release_created.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: ./dist
asset_path: ./dist/RBSAgent.exe
asset_name: RBSAgent.exe
asset_content_type: application/x-executable
- name: Upload Release Asset Linux
Expand All @@ -73,15 +73,15 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: ./dist
asset_path: ./dist/RBSAgent
asset_name: RBSAgent
asset_content_type: application/x-executable
- name: Upload Release Asset Linux
- name: Upload Release Asset Max
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: ./dist
asset_path: ./dist/RBSAgent.app
asset_name: RBSAgent
asset_content_type: application/x-executable

0 comments on commit 431508f

Please sign in to comment.