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
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
67
+
asset_path: ./bundle.js
68
+
asset_name: bundle.js
69
+
asset_content_type: text/javascript
70
+
71
+
- name: Upload declaration file
72
+
uses: actions/upload-release-asset@v1
73
+
env:
74
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
75
+
with:
76
+
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
77
+
asset_path: ./temp/${{ env.TAG_NAME }}.d.ts
78
+
asset_name: ${{ env.TAG_NAME }}.d.ts
79
+
asset_content_type: text/typescript
80
+
81
+
- name: Upload zip js bundle
82
+
uses: actions/upload-release-asset@v1
83
+
env:
84
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
85
+
with:
86
+
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