From 361e6451a7581a05a0bde4c842ab5338d46e4e93 Mon Sep 17 00:00:00 2001 From: EvolutionX Date: Wed, 22 Jun 2022 13:02:44 +0530 Subject: [PATCH] ci: damn it --- .github/workflows/continuous-delivery.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/continuous-delivery.yml b/.github/workflows/continuous-delivery.yml index 7fff20e..e2dc9e5 100644 --- a/.github/workflows/continuous-delivery.yml +++ b/.github/workflows/continuous-delivery.yml @@ -4,10 +4,6 @@ on: release: types: [published] workflow_dispatch: - inputs: - tag: - description: The tag of the package - required: true jobs: Publish: @@ -34,8 +30,6 @@ jobs: run: sern - name: Publish to npm - run: | - TAG=$([[ ${{ github.event_name }} == 'release' ]] && echo 'latest' || echo '${{ github.event.inputs.tag }}') - npm publish --tag ${TAG} + run: npm publish env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}