We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47bb7a0 commit ed5a04dCopy full SHA for ed5a04d
.github/workflows/submit.yml
@@ -55,6 +55,7 @@ jobs:
55
with:
56
path: .output/*.zip
57
if-no-files-found: error
58
+ include-hidden-files: true
59
60
- name: Submit
61
run: |
@@ -89,3 +90,8 @@ jobs:
89
90
- name: Release
91
if: ${{ !inputs.dryRun }}
92
run: pnpx changelogen@latest gh release ${{ steps.version.outputs.newVersion }} --token ${{ github.token }}
93
+
94
+ # 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