Skip to content
This repository has been archived by the owner on May 14, 2024. It is now read-only.

Commit

Permalink
fix(build): revert build to non-debug form
Browse files Browse the repository at this point in the history
  • Loading branch information
bcoe committed Oct 8, 2020
1 parent 651a642 commit e6f39a1
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions .github/workflows/release-please.yaml
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit e6f39a1

Please sign in to comment.