From c52df45d9f730af94c774c7f41aa03f13c6816a7 Mon Sep 17 00:00:00 2001 From: EPMatt <30753195+EPMatt@users.noreply.github.com> Date: Thu, 9 May 2024 21:30:24 +0000 Subject: [PATCH] do not publish to github packages --- .github/workflows/release.yml | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 69f0e1b7..5a23f312 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,28 +34,3 @@ jobs: run: npm publish --access public env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - publish-github-packages: - name: Publish to GitHub Packages - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Set up Node.js - uses: actions/setup-node@v4 - with: - node-version: '20.x' - registry-url: 'https://npm.pkg.github.com' - - - name: Install dependencies - run: npm ci - - - name: Build - run: npm run build - - - run: npm publish - env: - NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}