mirror of
https://github.com/DIYgod/RSSHub-Radar.git
synced 2026-08-30 16:41:08 +08:00
2c1e572b35
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
name: test
|
|
|
|
on:
|
|
push:
|
|
|
|
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: Archive production artifacts
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: build
|
|
path: |
|
|
build/safari-mv3-prod.zip
|
|
build/chrome-mv3-prod.zip
|
|
build/firefox-mv3-prod.zip
|