From ce2934b5fcb9e0a35a9558abc8ed58db5fab5b38 Mon Sep 17 00:00:00 2001 From: Zain Syed Date: Fri, 14 Oct 2022 16:55:55 -0400 Subject: [PATCH] fix: added special next flag for npm publish --- .github/workflows/release-please.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 484c51c7..05edce2f 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -28,9 +28,10 @@ jobs: # run: npm run test # env: # CI: true - # run build and create a tarball from the package - - name: Create Tarball - run: npm pack + - name: Publish the package + run: npm publish --tag next + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTOMATION_TOKEN_DTSSTN_LOCAL }} - uses: google-github-actions/release-please-action@v3 id: ga with: @@ -41,4 +42,4 @@ jobs: prerelease: true commit-search-depth: 32 release-search-depth: 3 - component: latest \ No newline at end of file + component: next \ No newline at end of file