From 67904d9c0844480ffe39956aacdb2b5f95021c36 Mon Sep 17 00:00:00 2001 From: Kabir-Ivan <110986400+Kabir-Ivan@users.noreply.github.com> Date: Thu, 4 Jul 2024 01:44:34 -0700 Subject: [PATCH] chore: add publish workflow (#966) --- .github/workflows/publish.yml | 37 +++++++++++++++++++++++++++++++++++ 1 file changed, 37 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..9b58e7006 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,37 @@ +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 + token: ${{ secrets.GH_ACCESS_TOKEN }} + - 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 + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + - run: git push --follow-tags