From 72d02eca98da282ec6be79dede401da4278090db Mon Sep 17 00:00:00 2001 From: Fernando Pelliccioni Date: Tue, 5 Dec 2023 20:33:01 +0100 Subject: [PATCH] test CI --- .github/workflows/kth.yml | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/.github/workflows/kth.yml b/.github/workflows/kth.yml index 91d4f5f..b065703 100644 --- a/.github/workflows/kth.yml +++ b/.github/workflows/kth.yml @@ -32,6 +32,23 @@ jobs: if: github.ref == 'refs/heads/master' && matrix.node-version == '18.x' env: NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}} - - run: npm ci - - run: npm publish --access public - + run: | + npm ci + npm publish --access public + + + + # publish-npm: + # needs: builds + # runs-on: ubuntu-latest + # name: Public NPM + # steps: + # - uses: actions/checkout@v3 + # - uses: actions/setup-node@v3 + # with: + # node-version: 16 + # registry-url: https://registry.npmjs.org/ + # - run: npm ci + # - run: npm publish --access public + # env: + # NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}