Skip to content

Commit 1dee0b3

Browse files
committed
ci: Add GitHub Actions workflow for automated releases
1 parent 3a4e5ba commit 1dee0b3

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Release Please
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
permissions:
9+
contents: write
10+
pull-requests: write
11+
12+
jobs:
13+
release-please:
14+
runs-on: ubuntu-latest
15+
steps:
16+
17+
-
18+
name: Checkout repository
19+
id: checkout
20+
uses: actions/checkout@v4
21+
22+
- name: Release Please Action
23+
uses: google-github-actions/release-please-action@v4
24+
id: release
25+
with:
26+
release-type: python # Specifies that it's a Python project
27+
# Optional configurations:
28+
token: ${{ secrets.MY_RELEASE_PLEASE_TOKEN }}

0 commit comments

Comments
 (0)