🦊 Fix strict_min_version in firefox manifest #3
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: Create Release for Chrome and Firefox | |
on: | |
push: | |
tags: | |
- "v*" | |
jobs: | |
build-and-release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Set up Node.js (for packaging or building, if required) | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "22" | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9.12.3 | |
run_install: true | |
- name: Build Extension for Chrome | |
run: pnpm build:chrome | |
- name: Build Extension for Firefox | |
run: pnpm build:firefox | |
- name: Create Release on GitHub | |
uses: softprops/action-gh-release@v2 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
token: ${{ secrets.CUSTOM_GITHUB_TOKEN }} | |
files: | | |
dist/chrome/chrome-extension.zip | |
dist/firefox/firefox-extension.zip |