From 81049e14b064938c3187e8da6a079f181bb8c857 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Quixada=CC=81?= Date: Sat, 1 Jul 2023 19:00:30 -0400 Subject: [PATCH] chore: removed github publish pipeline --- .github/workflows/release.yml | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6a94c27..5332ef2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -75,25 +75,3 @@ jobs: if: ${{ contains(github.ref_name, '-test.') }} env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - - # github: - # name: Publish to Github registry - # runs-on: ubuntu-latest - # needs: [checks, security] - # steps: - # - uses: actions/checkout@v3 - # # Setup .npmrc file to publish to GitHub Packages - # - uses: actions/setup-node@v3 - # with: - # node-version: '10' - # registry-url: 'https://npm.pkg.github.com' - # - uses: actions/cache@v3 - # with: - # path: ~/.npm # this is cache where npm installs from before going out to the network - # key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }} - # - run: npm install --prefer-offline - # # The package name needs to be scoped in order to publish on Github Registry - # - run: sed -i 's/"cross-fetch"/"@lquixada\/cross-fetch"/g' package.json - # - run: npm publish --tag latest-v3.x - # env: - # NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}