From d455a9ef3045c7a8d2700482152c0e93129fa675 Mon Sep 17 00:00:00 2001 From: EvolutionX Date: Wed, 29 Jun 2022 11:14:55 +0530 Subject: [PATCH] ci: update delivery workflow --- .github/workflows/continuous-delivery.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/continuous-delivery.yml b/.github/workflows/continuous-delivery.yml index e2dc9e5..8cc0ec6 100644 --- a/.github/workflows/continuous-delivery.yml +++ b/.github/workflows/continuous-delivery.yml @@ -1,13 +1,13 @@ name: Continuous Delivery on: - release: - types: [published] - workflow_dispatch: + push: + branches: + - main jobs: Publish: - name: Publishing + name: Publishing Dev runs-on: ubuntu-latest steps: @@ -30,6 +30,6 @@ jobs: run: sern - name: Publish to npm - run: npm publish + run: npm publish --tag dev env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}