Skip to content

Commit

Permalink
chore: add release action
Browse files Browse the repository at this point in the history
  • Loading branch information
taoliujun committed Jan 24, 2024
1 parent a6ccf93 commit cd0625d
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: release
run-name: '${{github.workflow}}'
on: workflow_dispatch

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4

- name: init pnpm
uses: pnpm/action-setup@v2
with:
version: 8

- name: init node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
cache-dependency-path: |
src/pnpm-lock.yaml
.github/actions/issue-to-hexo/pnpm-lock.yaml
- name: install dependencies
run: pnpm install

- name: build
run: pnpm run build

- name: release
run: |
NPM_TOKEN=${{secrets.NPM_TOKEN}} pnpm run release:token

0 comments on commit cd0625d

Please sign in to comment.