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 }}