From c63c61cd7ef3fec369fb992dd1fa92be919306cb Mon Sep 17 00:00:00 2001 From: Jason O'Donnell <2160810+jasonodonnell@users.noreply.github.com> Date: Fri, 31 Jul 2020 16:52:29 -0400 Subject: [PATCH] Comment out publish workflow --- .github/workflows/build.yml | 49 +++++++++++++++++++------------------ 1 file changed, 25 insertions(+), 24 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 32f63df..f3ce7a6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -141,28 +141,29 @@ jobs: env: OTHER_SECRET_OUTPUT: ${{ steps.kv-secrets.outputs.otherSecret }} - publish: - if: github.event_name == 'push' && contains(github.ref, 'master') - runs-on: ubuntu-latest - needs: [build, integration, e2e] - steps: - - uses: actions/checkout@v1 - - uses: actions/setup-node@v1 - with: - node-version: '' - - name: setup npm cache - uses: actions/cache@v1 - with: - path: ~/.npm - key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node- - - name: npm install - run: npm ci - - name: release - if: success() && endsWith(github.ref, 'master') - run: npx semantic-release - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} +# Removing publish step for now. +# publish: +# if: github.event_name == 'push' && contains(github.ref, 'master') +# runs-on: ubuntu-latest +# needs: [build, integration, e2e] +# steps: +# - uses: actions/checkout@v1 +# - uses: actions/setup-node@v1 +# with: +# node-version: '' +# - name: setup npm cache +# uses: actions/cache@v1 +# with: +# path: ~/.npm +# key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} +# restore-keys: | +# ${{ runner.os }}-node- +# - name: npm install +# run: npm ci +# - name: release +# if: success() && endsWith(github.ref, 'master') +# run: npx semantic-release +# env: +# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} +# NPM_TOKEN: ${{ secrets.NPM_TOKEN }}