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
{{ message }}
This repository was archived by the owner on Sep 11, 2023. It is now read-only.
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
68
-
asset_path: .\bin\Release\SPEdit.Installer.exe
69
-
asset_name: SPEdit.Installer.exe
70
-
asset_content_type: application/octet-stream
71
-
72
-
- name: Upload Portable
73
-
id: upload-portable
74
-
uses: actions/upload-release-asset@v1
75
-
env:
76
-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
77
-
with:
78
-
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
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
72
+
asset_path: .\bin\Release\SPCode.Installer.exe
73
+
asset_name: SPCode.Installer.exe
74
+
asset_content_type: application/octet-stream
75
+
76
+
- name: Upload Portable
77
+
id: upload-portable
78
+
uses: actions/upload-release-asset@v1
79
+
env:
80
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
81
+
with:
82
+
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
83
+
asset_path: .\bin\Release\SPCode.Portable.zip
84
+
asset_name: SPCode.Portable.zip
85
+
asset_content_type: application/zip
86
+
87
+
- name: Upload Updater
88
+
id: upload-updater
89
+
uses: actions/upload-release-asset@v1
90
+
env:
91
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
92
+
with:
93
+
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