Skip to content
This repository was archived by the owner on Aug 15, 2024. It is now read-only.

Commit e6f39a1

Browse files
author
bcoe
committed
fix(build): revert build to non-debug form
1 parent 651a642 commit e6f39a1

1 file changed

Lines changed: 19 additions & 19 deletions

File tree

.github/workflows/release-please.yaml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,26 @@ on:
44
- main
55
name: release-please
66
jobs:
7-
#build:
8-
# runs-on: ubuntu-latest
9-
# steps:
10-
# - uses: actions/checkout@v2
11-
# - name: install
12-
# run: npm install
13-
# - name: build
14-
# run: npm run build
15-
# - name: commit
16-
# run: |-
17-
# git config --global user.name "actions-bot"
18-
# git add dist/
19-
# git diff-index --quiet HEAD || git commit -m "chore: build dist"
20-
# git pull --rebase
21-
# git push origin main
7+
build:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- name: install
12+
run: npm install
13+
- name: build
14+
run: npm run build
15+
- name: commit
16+
run: |-
17+
git config --global user.name "actions-bot"
18+
git add dist/
19+
git diff-index --quiet HEAD || git commit -m "chore: build dist"
20+
git pull --rebase
21+
git push origin main
2222
release-please-pr:
2323
runs-on: ubuntu-latest
24-
# needs: [build]
24+
needs: [build]
2525
steps:
26-
- uses: GoogleCloudPlatform/release-please-action@4b61e6458fa5273c1cfbcd2a3c5830322258e980
26+
- uses: GoogleCloudPlatform/release-please-action@v2.4.2
2727
with:
2828
token: ${{ secrets.RELEASE_PR_TOKEN }}
2929
release-type: node
@@ -32,9 +32,9 @@ jobs:
3232
command: release-pr
3333
release-please-release:
3434
runs-on: ubuntu-latest
35-
# needs: [build]
35+
needs: [build]
3636
steps:
37-
- uses: GoogleCloudPlatform/release-please-action@4b61e6458fa5273c1cfbcd2a3c5830322258e980
37+
- uses: GoogleCloudPlatform/release-please-action@v2.4.2
3838
with:
3939
token: ${{ secrets.GITHUB_TOKEN }}
4040
release-type: node

0 commit comments

Comments
 (0)