From 2e4c11339c819154d9b7815637ca772aa55278f9 Mon Sep 17 00:00:00 2001 From: Kevin Brown Date: Wed, 11 Sep 2019 23:49:02 -0400 Subject: [PATCH] Disable deploying to GPM We have to wait to be cleared for the private beta access first before we can actually deploy to this. --- .github/workflows/package-deploy.yml | 54 ++++++++++++++-------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/.github/workflows/package-deploy.yml b/.github/workflows/package-deploy.yml index 63e51241..146c7052 100644 --- a/.github/workflows/package-deploy.yml +++ b/.github/workflows/package-deploy.yml @@ -8,33 +8,33 @@ on: release: ~ jobs: - deploy_github: - name: GitHub Package Registry - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - name: Use Node.js 8 - uses: actions/setup-node@v1 - with: - node-version: 8 - registry-url: https://npm.pkg.github.com/ - scope: '@select2' - - name: npm install - run: npm install - - name: Run linting, tests, minify - run: grunt - - name: Deploy (release) - if: github.event_name == 'release' - run: npm publish - env: - NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} - - name: Deploy (release candidate) - if: github.event_name == 'push' - run: | - npm --no-git-tag-version version prerelease - npm publish --tag next - env: - NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} + # deploy_github: + # name: GitHub Package Registry + # runs-on: ubuntu-latest + # steps: + # - uses: actions/checkout@v1 + # - name: Use Node.js 8 + # uses: actions/setup-node@v1 + # with: + # node-version: 8 + # registry-url: https://npm.pkg.github.com/ + # scope: '@select2' + # - name: npm install + # run: npm install + # - name: Run linting, tests, minify + # run: grunt + # - name: Deploy (release) + # if: github.event_name == 'release' + # run: npm publish + # env: + # NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} + # - name: Deploy (release candidate) + # if: github.event_name == 'push' + # run: | + # npm --no-git-tag-version version prerelease + # npm publish --tag next + # env: + # NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} deploy_npm: name: NPM runs-on: ubuntu-latest