From 9a6bb6b1ef7dec0d42aff75b6709dc029364a84a Mon Sep 17 00:00:00 2001 From: Manuel <5673677+mtrezza@users.noreply.github.com> Date: Wed, 13 Oct 2021 03:03:09 +0200 Subject: [PATCH] ci: disable npm publishing on release --- .github/workflows/release.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ea754a8a..90d5b8ac 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,9 +19,10 @@ jobs: restore-keys: | ${{ runner.os }}-node- - run: npm ci - - run: npm publish --tag alpha - env: - NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} +# Disable publishing until release automation; enable ad-hoc with correct npm tag (alpha, beta) +# - run: npm publish --tag alpha +# env: +# NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} publish-docs: runs-on: ubuntu-18.04 timeout-minutes: 30