Skip to content

Commit

Permalink
fix gh
Browse files Browse the repository at this point in the history
  • Loading branch information
medyagh committed Feb 15, 2020
1 parent a4cef67 commit 3d1123b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
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: ./gopogh-linux-amd64
asset_path: ./out/gopogh-linux-amd64
asset_name: gopogh-linux-amd64
asset_content_type: application/octet-stream
- name : upload mac assets
Expand All @@ -75,7 +75,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./gopogh-darwin-amd64
asset_path: ./out/gopogh-darwin-amd64
asset_name: gopogh-darwin-amd64
asset_content_type: application/octet-stream
- name : upload windows assets
Expand All @@ -85,7 +85,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./gopogh.exe
asset_path: ./out/gopogh.exe
asset_name: gopogh.exe
asset_content_type: application/octet-stream
- name: Publish to Docker Repository
Expand Down

0 comments on commit 3d1123b

Please sign in to comment.