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 }}