From 90c24f14d554f364c9afabd454888768af1a3c82 Mon Sep 17 00:00:00 2001 From: musti Date: Tue, 1 Oct 2024 19:27:53 +0300 Subject: [PATCH] feat: npm publish --- .github/workflows/npm.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/npm.yml diff --git a/.github/workflows/npm.yml b/.github/workflows/npm.yml new file mode 100644 index 0000000..00c7ba5 --- /dev/null +++ b/.github/workflows/npm.yml @@ -0,0 +1,24 @@ +name: Publish to npm +on: + push: + branches: + - main + tags: + - '*' +jobs: + publish: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + - name: Set up Node.js + uses: actions/setup-node@v2 + with: + node-version: '20' + registry-url: 'https://registry.npmjs.org/' + - name: Install dependencies + run: npm install + - name: Publish to npm + run: npm publish + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}