diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml new file mode 100644 index 0000000..44d857e --- /dev/null +++ b/.github/workflows/npm-publish.yml @@ -0,0 +1,36 @@ +name: NPM Package Publish + +on: + push: + branches: [main] + release: + types: [created] + 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: "22.x" + registry-url: "https://registry.npmjs.org" + - run: bun install + - run: bun run build + - name: Check if version is already published + run: | + PACKAGE_VERSION=$(node -p "require('./package.json').version") + PACKAGE_NAME=$(jq -r '.name' package.json) + npm view $PACKAGE_NAME@$PACKAGE_VERSION + continue-on-error: true + id: check_version + - name: Publish + if: steps.check_version.outcome != 'success' + run: npm publish --provenance --access public + env: + NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} diff --git a/README.md b/README.md index 6bac8fc..c351fc1 100644 --- a/README.md +++ b/README.md @@ -1 +1,3 @@ # Kunkun Extension Kill Process + +![](https://i.imgur.com/HggTZfj.png) diff --git a/package.json b/package.json index 6678204..d598cb5 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,10 @@ "name": "kunkun-ext-kill-process", "version": "0.0.10", "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/kunkunsh/kunkun-ext-kill-process" + }, "type": "module", "kunkun": { "name": "Kill Process ", @@ -14,7 +18,9 @@ "clipboard:write-text", "shell:kill-any" ], - "demoImages": [], + "demoImages": [ + "https://i.imgur.com/HggTZfj.png" + ], "icon": { "type": "iconify", "value": "material-symbols:terminal" @@ -45,6 +51,7 @@ }, "files": [ "./dist", + "README.md", ".gitignore" ] }