Skip to content

Commit

Permalink
fix(build): document working version of release-please
Browse files Browse the repository at this point in the history
  • Loading branch information
bcoe committed Sep 17, 2020
1 parent 291e00f commit 60ae28e
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 5 deletions.
20 changes: 18 additions & 2 deletions .github/workflows/release-please.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,30 @@ on:
push:
branches:
- main
name: release-please
name: release-please-pr
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: GoogleCloudPlatform/release-please-action@31e1a25ccf4f8df92fdb4066e3650a6167e5fe25
- uses: GoogleCloudPlatform/release-please-action@2.4.0
with:
token: ${{ secrets.RELEASE_PR_TOKEN }}
release-type: node
fork: true
package-name: release-please-action
command: release-pr
on:
push:
branches:
- main
name: release-please-release
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: GoogleCloudPlatform/release-please-action@2.4.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: node
package-name: release-please-action
command: github-release
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Automate releases with Conventional Commit Messages.
release-please:
runs-on: ubuntu-latest
steps:
- uses: GoogleCloudPlatform/release-please-action@v2.3.0
- uses: GoogleCloudPlatform/release-please-action@v2.4.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: node
Expand Down Expand Up @@ -107,7 +107,7 @@ To output more commit information in the changelog, a JSON formatted String can
release-please:
runs-on: ubuntu-latest
steps:
- uses: GoogleCloudPlatform/release-please-action@v2.3.0
- uses: GoogleCloudPlatform/release-please-action@v2.4.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: node
Expand All @@ -130,7 +130,7 @@ jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: GoogleCloudPlatform/release-please-action@v2.3.0
- uses: GoogleCloudPlatform/release-please-action@v2.4.0
id: release
with:
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 60ae28e

Please sign in to comment.