From 473c26265f331c773f3bd3f3e5fb4096d69c81b7 Mon Sep 17 00:00:00 2001 From: Anne Marsan Date: Mon, 5 Jan 2026 12:17:50 -0500 Subject: [PATCH 1/2] Remove unneeded stuff from cicd workflow --- .github/workflows/cicd.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 59e8807..bbed3da 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -16,10 +16,6 @@ jobs: with: node-version: 24 cache: 'npm' - - name: Configure Proget - run: | - npm config set @careevolution:registry=https://proget.careevolution.com/npm/npm/ - npm config set //proget.careevolution.com/npm/npm/:_authToken ${{ secrets.PROGET_NPM_TOKEN }} - name: Install Dependencies run: npm ci - name: Lint From a2df02ecc9a5eeae867ed03f7f2677173ebf090c Mon Sep 17 00:00:00 2001 From: Anne Marsan Date: Mon, 5 Jan 2026 12:20:14 -0500 Subject: [PATCH 2/2] Get ready to publish to npmjs.com --- .github/workflows/publish.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7da3821..efdfe3b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -19,10 +19,6 @@ jobs: with: node-version: 24 cache: 'npm' - - name: Configure Proget - run: | - npm config set @careevolution:registry=https://proget.careevolution.com/npm/npm/ - npm config set //proget.careevolution.com/npm/npm/:_authToken ${{ secrets.PROGET_NPM_TOKEN }} - name: Install Dependencies run: npm ci - name: Run Build @@ -30,4 +26,11 @@ jobs: - name: Test run: npm run test - name: Deploy to ProGet - run: npm publish ./dist + run: | + npm config set @careevolution:registry=https://proget.careevolution.com/npm/npm/ + npm config set //proget.careevolution.com/npm/npm/:_authToken ${{ secrets.PROGET_NPM_TOKEN }} + npm publish ./dist + - name: Deploy NPM + run: | + npm config set @careevolution:registry=https://registry.npmjs.org/ + npm publish ./dist/elements --access public \ No newline at end of file