mirror of
https://github.com/jonasrafa/kunkun-ext-google-search.git
synced 2025-04-03 17:56:45 +00:00
add gitHub action workflow
This commit is contained in:
parent
79ec284b67
commit
861d3b520b
24
.github/workflows/npm-publish.yml
vendored
Normal file
24
.github/workflows/npm-publish.yml
vendored
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
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}}
|
Loading…
x
Reference in New Issue
Block a user