mirror of
https://github.com/jonasrafa/kunkun-ext-on-this-day.git
synced 2025-04-03 17:56:43 +00:00
25 lines
573 B
YAML
25 lines
573 B
YAML
name: NPM Package Publish
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
publish-npm:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
id-token: write
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: oven-sh/setup-bun@v2
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: "20.x"
|
|
registry-url: "https://registry.npmjs.org"
|
|
- run: bun install
|
|
- run: bun run build
|
|
- name: Publish to NPM
|
|
run: npm publish --provenance --access public
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
|