diff --git a/.github/workflows/manual-manage-versions.yml b/.github/workflows/manual-manage-versions.yml index 717f60997..1df148253 100644 --- a/.github/workflows/manual-manage-versions.yml +++ b/.github/workflows/manual-manage-versions.yml @@ -34,4 +34,4 @@ jobs: - name: Change version run: npm dist-tag add sfdx-git-delta@${{ github.event.inputs.version-number }} ${{ github.event.inputs.version-alias }} env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/.github/workflows/on-main-push.yml b/.github/workflows/on-main-push.yml index f8c1655fa..2aba9057f 100644 --- a/.github/workflows/on-main-push.yml +++ b/.github/workflows/on-main-push.yml @@ -48,7 +48,7 @@ jobs: - name: Publish to npm run: yarn npm publish --access public --tag latest-rc env: - YARN_NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + YARN_NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} test-release: uses: ./.github/workflows/run-e2e-tests.yml diff --git a/.github/workflows/on-merged-pull-request.yml b/.github/workflows/on-merged-pull-request.yml index 6b719aa38..d91846a7b 100644 --- a/.github/workflows/on-merged-pull-request.yml +++ b/.github/workflows/on-merged-pull-request.yml @@ -38,14 +38,14 @@ jobs: - name: Remove dist-tag run: npm dist-tag rm sfdx-git-delta ${{ env.DEV_CHANNEL }} env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - name: Deprecate related dev versions run: | DEV_VERSIONS=$(npm view sfdx-git-delta versions --json | jq -r '.[]' | grep -E "${{ env.CURRENT_VERSION}}-${{ }}") [ -n "$DEV_VERSIONS" ] && for DEV_VERSION in ${DEV_VERSIONS}; do npm deprecate "sfdx-git-delta@${DEV_VERSION}" "Deprecated dev version"; done env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - name: Delete package dev channel PR comment uses: thollander/actions-comment-pull-request@v2 diff --git a/.github/workflows/on-pull-request.yml b/.github/workflows/on-pull-request.yml index 3e40dec73..3cad508e4 100644 --- a/.github/workflows/on-pull-request.yml +++ b/.github/workflows/on-pull-request.yml @@ -137,7 +137,7 @@ jobs: npm version "${CURRENT_VERSION}-${DEV_TAG}" yarn npm publish --access public --tag "${{ env.DEV_CHANNEL }}" env: - YARN_NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + YARN_NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - name: Comment PR dev channel uses: thollander/actions-comment-pull-request@v2