Skip to content

Commit

Permalink
fix pipeline script
Browse files Browse the repository at this point in the history
  • Loading branch information
mhewedy committed Apr 26, 2020
1 parent d4bd0b3 commit 3786fbd
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,19 +65,19 @@ jobs:
asset_content_type: application/tar+gzip

- uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_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: ./vermin-${{ steps.get_version.outputs.VERSION }}.linux.tar.gz.sha256sum
asset_name: vermin-${{ steps.get_version.outputs.VERSION }}.linux.tar.gz.sha256sum
asset_content_type: text/plain
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_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: ./vermin-${{ steps.get_version.outputs.VERSION }}.linux.tar.gz.sha256sum
asset_name: vermin-${{ steps.get_version.outputs.VERSION }}.linux.tar.gz.sha256sum
asset_content_type: text/plain

- uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_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: ./vermin-${{ steps.get_version.outputs.VERSION }}.darwin.tar.gz.sha256sum
asset_name: vermin-${{ steps.get_version.outputs.VERSION }}.darwin.tar.gz.sha256sum
asset_content_type: text/plain
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_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: ./vermin-${{ steps.get_version.outputs.VERSION }}.darwin.tar.gz.sha256sum
asset_name: vermin-${{ steps.get_version.outputs.VERSION }}.darwin.tar.gz.sha256sum
asset_content_type: text/plain

0 comments on commit 3786fbd

Please sign in to comment.