From 30187d8d0df41e970ab4640acbb90e8ad3772991 Mon Sep 17 00:00:00 2001 From: MultiMote Date: Tue, 22 Oct 2024 22:08:40 +0300 Subject: [PATCH] Add npm publish action --- .github/workflows/publish-npmjs.yml | 35 +++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/publish-npmjs.yml diff --git a/.github/workflows/publish-npmjs.yml b/.github/workflows/publish-npmjs.yml new file mode 100644 index 0000000..1df2575 --- /dev/null +++ b/.github/workflows/publish-npmjs.yml @@ -0,0 +1,35 @@ +name: Publish Package to npmjs + +on: + workflow_dispatch: + push: + tags: + - '*' + +jobs: + build-and-publish: + runs-on: ubuntu-latest + permissions: + contents: read + id-token: write + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: '20.x' + registry-url: 'https://registry.npmjs.org' + scope: '@mmote' + + - name: Install dependencies + run: yarn install + + - name: Build + run: yarn build + + - name: Publish + run: npm publish --provenance --access public + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} \ No newline at end of file