From 585706297c5105d5e9681f477158de169300dd11 Mon Sep 17 00:00:00 2001 From: Luca Foscili <45429703+lucafoscili@users.noreply.github.com> Date: Mon, 27 Jul 2026 16:18:54 +0200 Subject: [PATCH] Update continuum.yaml --- .github/workflows/continuum.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuum.yaml b/.github/workflows/continuum.yaml index 04890a81f..122d1870f 100644 --- a/.github/workflows/continuum.yaml +++ b/.github/workflows/continuum.yaml @@ -82,12 +82,15 @@ jobs: build: runs-on: ubuntu-latest needs: ketchup-release + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN || secrets.NODE_AUTH_TOKEN }} steps: - uses: actions/checkout@v5 - uses: actions/setup-node@v5 with: node-version: '22.16.0' registry-url: 'https://registry.npmjs.org' + scope: '@sme.up' - name: Update npm run: npm install -g npm@10 @@ -119,12 +122,12 @@ jobs: - name: Publish Ketchup run: | cd packages/ketchup - npm publish --tag snapshot + npm publish --tag snapshot --access public - name: Publish Ketchup React run: | cd packages/ketchup-react - npm publish --tag snapshot + npm publish --tag snapshot --access public trigger-webup-continuum: needs: build