Skip to content

Commit 5b4ac5d

Browse files
authored
chore: release please fixes (#160)
* chore: add title to the changelog * chore: update release-please configuration
1 parent d95d3a3 commit 5b4ac5d

File tree

4 files changed

+25
-7
lines changed

4 files changed

+25
-7
lines changed

.github/workflows/release-please.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ on:
1717
branches:
1818
- main
1919

20+
concurrency:
21+
group: ${{ github.workflow }}-${{ github.ref }}
22+
cancel-in-progress: true
23+
2024
permissions:
2125
contents: write
2226
pull-requests: write
@@ -27,12 +31,6 @@ jobs:
2731
release-please:
2832
runs-on: ubuntu-latest
2933
steps:
30-
- uses: google-github-actions/release-please-action@v4
34+
- uses: googleapis/release-please-action@d1a8f221d7723166f48a584aebba00ef3f6febec
3135
with:
3236
token: ${{ secrets.SYNCED_GITHUB_TOKEN_REPO }}
33-
release-type: dart
34-
package-name: "@googlemaps/flutter-driver-sdk"
35-
bump-minor-pre-major: true
36-
bump-patch-for-minor-pre-major: true
37-
prerelease: true
38-
prerelease-type: beta

.release-please-manifest.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
".": "0.3.0-beta"
3+
}

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Changelog
2+
13
## 0.3.0-beta
24

35
This is the beta release of the Google Maps Driver package for Flutter. It is an early look at the package and is intended for testing and feedback collection. The functionalities and APIs in this version are subject to change.

release-please-config.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
3+
"release-type": "dart",
4+
"include-component-in-tag": false,
5+
"include-v-in-tag": false,
6+
"bump-minor-pre-major": true,
7+
"bump-patch-for-minor-pre-major": true,
8+
"prerelease": true,
9+
"packages": {
10+
".": {
11+
"package-name": "google_driver_flutter",
12+
"changelog-path": "CHANGELOG.md"
13+
}
14+
}
15+
}

0 commit comments

Comments
 (0)