From ee09dbca18caf006fc556cf864b53fdc296205be Mon Sep 17 00:00:00 2001 From: rahuljain-dev Date: Fri, 5 Apr 2024 12:42:21 +0530 Subject: [PATCH] ELEMENTS-1716: Promoting release throw error still passed - elements repo --- .github/workflows/promote.yaml | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/.github/workflows/promote.yaml b/.github/workflows/promote.yaml index 90b9cf32c..e55e3ca34 100644 --- a/.github/workflows/promote.yaml +++ b/.github/workflows/promote.yaml @@ -72,21 +72,6 @@ jobs: NODE_AUTH_TOKEN: ${{ secrets.NPM_PACKAGES_TOKEN }} run: | npx ${{ env.LERNA }} exec --ignore @nuxeo/nuxeo-elements-storybook -- npm publish --@nuxeo:registry=https://packages.nuxeo.com/repository/npm-public/ - - - name: Publish to https://registry.npmjs.org (dry run) - if: ${{ github.event.inputs.dryRun == 'true' }} - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_REGISTRY_TOKEN }} - run: | - npx ${{ env.LERNA }} exec --ignore @nuxeo/nuxeo-elements-storybook -- npm publish --@nuxeo:registry=https://registry.npmjs.org/ --access public --dry-run - - - name: Publish to https://registry.npmjs.org - continue-on-error: true - if: ${{ github.event.inputs.dryRun == 'false' }} - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_REGISTRY_TOKEN }} - run: | - npx ${{ env.LERNA }} exec --ignore @nuxeo/nuxeo-elements-storybook -- npm publish --@nuxeo:registry=https://registry.npmjs.org/ --access public - uses: actions/checkout@v2 with: