mirror of
https://github.com/DIYgod/RSSHub-Radar.git
synced 2026-09-01 14:51:13 +08:00
48 lines
1.3 KiB
YAML
48 lines
1.3 KiB
YAML
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 22.x
|
|
uses: actions/setup-node@v4.0.2
|
|
with:
|
|
node-version: 22.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
|