Skip to content

Commit a7d2105

Browse files
committed
ci(bump): create release.yml and the necessary files
1 parent 34d608b commit a7d2105

3 files changed

Lines changed: 35 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
on:
2+
workflow_dispatch: # makes it possible to run the workflow manually
3+
push:
4+
branches:
5+
- main
6+
7+
permissions:
8+
contents: write
9+
pull-requests: write
10+
11+
name: release-please
12+
13+
jobs:
14+
release-please:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: googleapis/release-please-action@v4.2.0
18+
id: release
19+
with:
20+
token: ${{ secrets.RELEASE_PLEASE_ACCESS_TOKEN }}
21+
config-file: release-please-config.json
22+
manifest-file: .release-please-manifest.json

.release-please-manifest.json

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

release-please-config.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"packages": {
3+
".": {
4+
"release-type": "python",
5+
"include-component-in-tag": false,
6+
"skip-tag-prefix": true
7+
}
8+
},
9+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
10+
}

0 commit comments

Comments
 (0)