Skip to content

chore: release 2.0.19 #27

chore: release 2.0.19

chore: release 2.0.19 #27

Workflow file for this run

name: release
on:
push:
tags:
- "*"
env:
PLASMO_PUBLIC_UMAMI_ID: ${{ vars.PLASMO_PUBLIC_UMAMI_ID }}
PLASMO_PUBLIC_UMAMI_URL: ${{ vars.PLASMO_PUBLIC_UMAMI_URL }}
jobs:
build:
runs-on: macos-latest
name: Build assets
steps:
- uses: actions/checkout@v4
- name: Cache pnpm modules
uses: actions/cache@v4
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-
- uses: pnpm/action-setup@v3.0.0
with:
version: latest
run_install: true
- name: Use Node.js 20.x
uses: actions/setup-node@v4.0.2
with:
node-version: 20.x
cache: "pnpm"
- name: Package the extension for Chrome
run: pnpm build --zip
- name: Package the extension for Firefox
run: pnpm build:firefox --zip
- name: Package the extension for Safari
run: pnpm build:safari:zip
- name: Upload file
uses: xresloader/upload-to-github-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
file: "build/chrome-mv3-prod.zip;build/firefox-mv3-prod.zip;build/safari-mv3-prod.zip"
tags: true
draft: false