chore: 再更新

This commit is contained in:
IamFurina 2025-07-03 16:25:23 +08:00 committed by ImFurina
parent f617b066c9
commit 2b662ae7c7

View File

@ -1,21 +1,22 @@
name: Publish Package to npmjs
# .github/workflows/release.yml
name: Release
on:
release:
types: [published]
push:
tags:
- 'v*'
jobs:
build:
release:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v4
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm publish --provenance --access public
node-version: 20
registry-url: 'https://registry.npmjs.org/'
- run: npm install
- run: npm run build
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}