From 9ebef24ca3a8c58a77ede470d6b1c8ff65f97886 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andre=CC=81=20Kilchenmann?= Date: Thu, 11 Jun 2020 21:39:45 +0200 Subject: [PATCH] fix(CI): Bug fix in publish process --- .github/workflows/main.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 327a0890b..a14062054 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -62,6 +62,7 @@ jobs: - uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} + registry-url: https://registry.npmjs.org/ - name: Install dependencies run: | npm install @@ -72,7 +73,7 @@ jobs: run: npm run prepare-dev-publication - name: Build run: npm run build - - name: Publish on npm (dry run) + - name: Publish to npm run: npm publish build/ --access public env: NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN_DASCHBOT}}