This repository was archived by the owner on Aug 15, 2024. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44 - main
55name : release-please
66jobs :
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
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
You can’t perform that action at this time.
0 commit comments