Skip to content

Commit

Permalink
chore: add github action with release
Browse files Browse the repository at this point in the history
  • Loading branch information
ischaojie committed Jan 2, 2024
1 parent 768b017 commit 7541f8c
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: release

on:
push:
tags:
- "*"

jobs:
build:
runs-on: ubuntu-latest
name: Build assets
steps:
- uses: actions/checkout@v4
- name: Cache pnpm modules
uses: actions/cache@v3
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-
- uses: pnpm/[email protected]
with:
version: latest
run_install: true
- name: Use Node.js 16.x
uses: actions/[email protected]
with:
node-version: 16.x
cache: "pnpm"
- name: Package the extension for Chrome
run: |
pnpm build
zip -r canger-chrome-${{ github.ref_name }}.zip dist
# TODO: support buid for firefox
- name: Upload file
uses: xresloader/upload-to-github-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
file: "canger-chrome-${{ github.ref_name }}.zip"
tags: true
draft: false

0 comments on commit 7541f8c

Please sign in to comment.