diff --git a/.github/workflows/continuous-delivery.yml b/.github/workflows/continuous-delivery.yml index 8cc0ec6..22b7963 100644 --- a/.github/workflows/continuous-delivery.yml +++ b/.github/workflows/continuous-delivery.yml @@ -30,6 +30,8 @@ jobs: run: sern - name: Publish to npm - run: npm publish --tag dev + run: | + npm version --preid "dev.$(git rev-parse --verify --short HEAD)" + npm publish --tag dev env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}