You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
39
+
with:
40
+
tag_name: ${{ github.ref }}
41
+
release_name: Release ${{ github.ref }}
42
+
draft: false
43
+
prerelease: false
44
+
- name: Upload Windows Release Asset
45
+
id: upload-release-asset
46
+
uses: actions/upload-release-asset@v1
47
+
env:
48
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
49
+
with:
50
+
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
51
+
asset_path: ./bundle-helper.windows.amd64.exe
52
+
asset_name: bundle-helper.windows.amd64.exe
53
+
asset_content_type: application/octet-stream
54
+
- name: Upload Linux amd64 Release Asset
55
+
id: upload-release-asset
56
+
uses: actions/upload-release-asset@v1
57
+
env:
58
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
59
+
with:
60
+
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
61
+
asset_path: ./bundle-helper.linux.amd64
62
+
asset_name: bundle-helper.linux.amd64
63
+
asset_content_type: application/octet-stream
64
+
- name: Upload Linux arm Release Asset
65
+
id: upload-release-asset
66
+
uses: actions/upload-release-asset@v1
67
+
env:
68
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
69
+
with:
70
+
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
71
+
asset_path: ./bundle-helper.linux.arm
72
+
asset_name: bundle-helper.linux.arm
73
+
asset_content_type: application/octet-stream
74
+
- name: Upload Darwin amd64 Release Asset
75
+
id: upload-release-asset
76
+
uses: actions/upload-release-asset@v1
77
+
env:
78
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
79
+
with:
80
+
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
0 commit comments