Skip to content

Commit

Permalink
Update tarball.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua-Dickens authored May 18, 2023
1 parent 0b235a2 commit 70ba689
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions .github/workflows/tarball.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,19 @@ jobs:
./
outPath: test.tar.gz

- name: Add Test Report to Release
uses: irongut/[email protected]
- name: Get release
id: get_release
uses: bruceadams/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}

- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
with:
token: "${{ secrets.TOKEN }}"
id: ${{ github.event.release.id }}
files: "test.tar.gz"
upload_url: ${{ steps.get_release.outputs.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: ./test.tar.gz
asset_name: test.tar.gz
asset_content_type: application/zip

0 comments on commit 70ba689

Please sign in to comment.