From 56414c69f406c7a952ec01f8718f21b4ef65447f Mon Sep 17 00:00:00 2001 From: Taj Date: Wed, 6 Aug 2025 16:55:45 +0530 Subject: [PATCH] ci: remove GitHub Packages publish step This commit removes the steps for publishing to GitHub Packages from the release workflow. The workflow will now only publish to npm. --- .github/workflows/release.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9d5144c..4950bb1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,5 +1,5 @@ -name: Publish to npm and GitHub Packages - +name: Publish to npm + on: release: types: [created] @@ -38,15 +38,15 @@ jobs: # ---------------------------- # ✅ GitHub Packages Publish # ---------------------------- - - name: 📦 Configure .npmrc for GitHub Packages - run: | - echo "@interactive-video-labs:registry=https://npm.pkg.github.com/" > ~/.npmrc - echo "//npm.pkg.github.com/:_authToken=${{ secrets.GH_PUBLISH_PAT }}" >> ~/.npmrc - - - name: 🚀 Publish to GitHub Packages - run: pnpm publish --no-git-checks --registry=https://npm.pkg.github.com/ - env: - NODE_AUTH_TOKEN: ${{ secrets.GH_PUBLISH_PAT }} + # - name: 📦 Configure .npmrc for GitHub Packages + # run: | + # echo "@interactive-video-labs:registry=https://npm.pkg.github.com/" > ~/.npmrc + # echo "//npm.pkg.github.com/:_authToken=${{ secrets.GH_PUBLISH_PAT }}" >> ~/.npmrc + + # - name: 🚀 Publish to GitHub Packages + # run: pnpm publish --no-git-checks --registry=https://npm.pkg.github.com/ + # env: + # NODE_AUTH_TOKEN: ${{ secrets.GH_PUBLISH_PAT }} # ---------------------------- # ✅ npmjs.com Publish