From e6f39a1ff2137720a77acef0b92a813658920fa4 Mon Sep 17 00:00:00 2001 From: bcoe Date: Thu, 8 Oct 2020 14:02:55 -0700 Subject: [PATCH] fix(build): revert build to non-debug form --- .github/workflows/release-please.yaml | 38 +++++++++++++-------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/release-please.yaml b/.github/workflows/release-please.yaml index 6b99378..c532f77 100644 --- a/.github/workflows/release-please.yaml +++ b/.github/workflows/release-please.yaml @@ -4,26 +4,26 @@ on: - main name: release-please jobs: - #build: - # runs-on: ubuntu-latest - # steps: - # - uses: actions/checkout@v2 - # - name: install - # run: npm install - # - name: build - # run: npm run build - # - name: commit - # run: |- - # git config --global user.name "actions-bot" - # git add dist/ - # git diff-index --quiet HEAD || git commit -m "chore: build dist" - # git pull --rebase - # git push origin main + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: install + run: npm install + - name: build + run: npm run build + - name: commit + run: |- + git config --global user.name "actions-bot" + git add dist/ + git diff-index --quiet HEAD || git commit -m "chore: build dist" + git pull --rebase + git push origin main release-please-pr: runs-on: ubuntu-latest - # needs: [build] + needs: [build] steps: - - uses: GoogleCloudPlatform/release-please-action@4b61e6458fa5273c1cfbcd2a3c5830322258e980 + - uses: GoogleCloudPlatform/release-please-action@v2.4.2 with: token: ${{ secrets.RELEASE_PR_TOKEN }} release-type: node @@ -32,9 +32,9 @@ jobs: command: release-pr release-please-release: runs-on: ubuntu-latest - # needs: [build] + needs: [build] steps: - - uses: GoogleCloudPlatform/release-please-action@4b61e6458fa5273c1cfbcd2a3c5830322258e980 + - uses: GoogleCloudPlatform/release-please-action@v2.4.2 with: token: ${{ secrets.GITHUB_TOKEN }} release-type: node