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
body: ${{ steps.changelog_reader.outputs.log_entry }} # This pulls from the GET CHANGELOG ENTRY step above, referencing it's ID to get its outputs object, which include a `log_entry`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
83
+
draft: false
84
+
prerelease: true
85
+
86
+
# One ZIP upload directly to Release
87
+
- name: Upload Release Asset
88
+
id: upload-release-asset
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