Publish to Firefox Add-Ons Store (Production) #66
Workflow file for this run
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
name: Publish to Firefox Add-Ons Store (Production) | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
ref: ${{ github.event.pull_request.head.ref }} | |
token: ${{ secrets.REPO_TOKEN }} | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "20.16.0" | |
cache: 'yarn' | |
- name: Install deps via Yarn | |
run: yarn setup | |
- uses: actions/checkout@v4 | |
with: | |
repository: 'rainbow-me/browser-extension-env' | |
token: ${{ secrets.DOTENV_GITHUB_ACCESS_TOKEN }} | |
path: tmp | |
- name: Copy dotenv | |
run: cat tmp/dotenv >> .env && rm -rf tmp | |
- name: Fetch the current version number | |
run: echo "release_version=$(cat package.json | jq -r .version)" >> $GITHUB_ENV | |
- name: Build the extension ready for the Firefox Add Ons Store | |
run: yarn firefox:build | |
- name: Update the manifest | |
run: yarn update-manifest prod | |
- name: Archive the build artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: rainbowbx-firefox-v${{ env.release_version }} | |
path: build/ | |
# - name: Zip it | |
# run: yarn firefox:zip | |
# - name: Submit to the firefox addons store | |
# uses: PlasmoHQ/[email protected] | |
# with: | |
# artifact: ./rainbowbx.xpi | |
# keys: ${{ secrets.BPP_KEYS_PROD_FIREFOX }} | |
- name: Create Sentry release | |
uses: getsentry/action-release@v1 | |
env: | |
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
SENTRY_ORG: ${{ secrets.SENTRY_ORG }} | |
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }} | |
with: | |
environment: production | |
finalize: true | |
sourcemaps: ./build | |
version: ${{ env.release_version }} | |
url_prefix: 'chrome-extension://opfgelmcmbiajamepnmloijbpoleiama' | |