We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 095142b commit 21458f2Copy full SHA for 21458f2
.github/workflows/submit.yml
@@ -89,6 +89,9 @@ jobs:
89
90
- name: Release
91
if: ${{ !inputs.dryRun }}
92
- run: gh release create v${{ steps.version.outputs.newVersion }} .output/*.zip -F CHANGELOG.md
93
- env:
94
- GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ run: pnpx changelogen@latest gh release ${{ steps.version.outputs.newVersion }} --token ${{ github.token }}
+
+ # Don't upload sources zip - it can contain .env files, which may include secrets
95
+ - name: Upload ZIPs
96
+ if: ${{ !inputs.dryRun }}
97
+ run: gh release upload ${{ steps.version.outputs.newVersion }} .output/*-chrome.zip .output/*-firefox.zip
0 commit comments