Release #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
env: | |
DIRECTORY: distribution | |
# FILE GENERATED WITH: npx ghat fregante/ghatemplates/webext | |
# SOURCE: https://github.com/fregante/ghatemplates | |
# OPTIONS: {"exclude":["on.schedule"]} | |
name: Release | |
on: | |
workflow_dispatch: null | |
jobs: | |
Version: | |
outputs: | |
created: ${{ steps.daily-version.outputs.created }} | |
version: ${{ steps.daily-version.outputs.version }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 20 | |
- name: install | |
run: npm ci || npm install | |
- run: npm test | |
- uses: fregante/daily-version-action@v2 | |
name: Create tag if necessary | |
id: daily-version | |
- name: Create release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: gh release create "${{ steps.daily-version.outputs.version }}" | |
Submit: | |
needs: Version | |
if: github.event_name == 'workflow_dispatch' || needs.Version.outputs.created | |
strategy: | |
fail-fast: false | |
matrix: | |
command: | |
- firefox | |
- chrome | |
runs-on: ubuntu-latest | |
environment: Production | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install | |
run: npm ci || npm install | |
- run: npm run build --if-present | |
- name: Update extension’s meta | |
run: >- | |
npx dot-json@1 $DIRECTORY/manifest.json version ${{ | |
needs.Version.outputs.version }} | |
- name: Submit | |
run: | | |
case ${{ matrix.command }} in | |
chrome) | |
cd $DIRECTORY && npx chrome-webstore-upload-cli@3 | |
;; | |
firefox) | |
cd $DIRECTORY && npx web-ext@8 sign --use-submission-api --channel listed | |
;; | |
esac | |
env: | |
EXTENSION_ID: ${{ secrets.EXTENSION_ID }} | |
CLIENT_ID: ${{ secrets.CLIENT_ID }} | |
CLIENT_SECRET: ${{ secrets.CLIENT_SECRET }} | |
REFRESH_TOKEN: ${{ secrets.REFRESH_TOKEN }} | |
WEB_EXT_API_KEY: ${{ secrets.WEB_EXT_API_KEY }} | |
WEB_EXT_API_SECRET: ${{ secrets.WEB_EXT_API_SECRET }} |