From 52581fac00a07c2dd9d150138e206a42a9789aa3 Mon Sep 17 00:00:00 2001 From: Ulad Kasach Date: Fri, 28 Jul 2023 07:01:29 -0700 Subject: [PATCH] fix(cicd): remove publish-on-tag in favor of publish --- .github/workflows/publish-on-tag.yml | 29 ---------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/publish-on-tag.yml diff --git a/.github/workflows/publish-on-tag.yml b/.github/workflows/publish-on-tag.yml deleted file mode 100644 index f579f38..0000000 --- a/.github/workflows/publish-on-tag.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: deploy_on_tag - -on: - push: - tags: - - v* - -jobs: - test_and_deploy: - runs-on: ubuntu-20.04 - steps: - - name: checkout - uses: actions/checkout@v1 - - - uses: actions/setup-node@v1 - with: - node-version: '12.x' - registry-url: 'https://registry.npmjs.org' - - - name: install - run: npm install - - - name: tests - run: npm run test - - - name: publish - run: npm publish - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}