We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe0146c commit febe6a6Copy full SHA for febe6a6
1 file changed
.github/workflows/release.yml
@@ -49,20 +49,21 @@ jobs:
49
fail-fast: false
50
matrix:
51
command:
52
- - firefox
53
- - chrome
+ - Firefox
+ - Chrome
54
+ environment: ${{ matrix.command }}
55
runs-on: ubuntu-latest
56
steps:
57
- uses: actions/download-artifact@v3
58
- name: Submit to Mozilla
- if: matrix.command == 'firefox'
59
+ if: matrix.command == 'Firefox'
60
working-directory: artifact
- run: npx web-ext-submit@7.5.0-1
61
+ run: npx web-ext-submit@7
62
env:
63
WEB_EXT_API_KEY: ${{ secrets.WEB_EXT_API_KEY }}
64
WEB_EXT_API_SECRET: ${{ secrets.WEB_EXT_API_SECRET }}
65
- name: Submit to Google
- if: matrix.command == 'chrome'
66
+ if: matrix.command == 'Chrome'
67
68
run: npx chrome-webstore-upload-cli@2 upload --auto-publish
69
0 commit comments