From b527faf6f79ee976110cbb44633e3f1c0a6c3b53 Mon Sep 17 00:00:00 2001 From: Kabir-Ivan <110986400+Kabir-Ivan@users.noreply.github.com> Date: Tue, 2 Jul 2024 07:30:42 -0700 Subject: [PATCH] Auto publish to npm (#562) * chore: add auto publish to npm --- .github/workflows/publish.yml | 36 +++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 000000000..46a404b2e --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,36 @@ +name: NPM publish +on: + workflow_dispatch: + inputs: + versionType: + type: choice + description: Version Type + required: true + options: + - patch + - minor + - major +permissions: + contents: write +jobs: + publish: + name: Publishing to NPM + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + with: + fetch-depth: 0 + - name: Setup Node JS + uses: actions/setup-node@v2 + with: + node-version: 18 + registry-url: https://registry.npmjs.org + - run: npm ci + - run: git config --global user.email "y-infra@yandex.ru" + - run: git config --global user.name "y-infra" + - run: npm run release -- --release-as ${{ github.event.inputs.versionType }} + - run: npm publish + - run: git push --follow-tags + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}