We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 082f307 commit dc1b060Copy full SHA for dc1b060
.github/workflows/publish.yml
@@ -35,6 +35,15 @@ jobs:
35
npm run zip:firefox
36
npm run zip
37
38
+ - name: Upload as artifacts
39
+ env:
40
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
41
+ run: |
42
+ MV2=$(find .output -type f -name "*-mv2.zip")
43
+ MV3=$(find .output -type f -name "*-mv3.zip")
44
+ gh upload-artifact $(basename $MV2) $MV2
45
+ gh upload-artifact $(basename $MV3) $MV3
46
+
47
- name: Upload to latest release
48
if: github.event.inputs.dry_run != 'true'
49
uses: svenstaro/upload-release-action@v2
0 commit comments