From 1325c12b2bc62b0864c06390bad05a54d40a819f Mon Sep 17 00:00:00 2001 From: Huakun Shen Date: Tue, 18 Mar 2025 07:52:49 -0400 Subject: [PATCH] feat: Add GitHub Actions workflow for NPM package publishing --- .github/workflows/kk-ext-publish.yml | 35 ++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/kk-ext-publish.yml diff --git a/.github/workflows/kk-ext-publish.yml b/.github/workflows/kk-ext-publish.yml new file mode 100644 index 0000000..9c8e42a --- /dev/null +++ b/.github/workflows/kk-ext-publish.yml @@ -0,0 +1,35 @@ +name: NPM Package Publish + +on: + push: + branches: [kunkun-ext] + release: + types: [created] + workflow_dispatch: + +jobs: + publish-npm: + runs-on: ubuntu-latest + permissions: + contents: read + id-token: write + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: "22.x" + registry-url: "https://registry.npmjs.org" + - run: npm install + - run: npm run build + - name: Check if version is already published + run: | + PACKAGE_VERSION=$(jq -r '.version' package.json) + 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}} \ No newline at end of file