Skip to content

Commit 8bf82db

Browse files
chore(release): add release-please configuration for automated releases
1 parent 98efef3 commit 8bf82db

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: release-please
2+
on:
3+
push:
4+
branches: [main]
5+
6+
permissions:
7+
contents: write
8+
pull-requests: write
9+
10+
jobs:
11+
release-please:
12+
runs-on: ubuntu-latest
13+
outputs:
14+
release_created: ${{ steps.release.outputs.release_created }}
15+
tag_name: ${{ steps.release.outputs.tag_name }}
16+
steps:
17+
- name: Run release-please
18+
id: release
19+
uses: googleapis/release-please-action@v5
20+
with:
21+
config-file: release-please-config.json
22+
manifest-file: .release-please-manifest.json
23+
24+
publish:
25+
needs: release-please
26+
if: needs.release-please.outputs.release_created == 'true'
27+
uses: OneLiteFeatherNET/workflows/.github/workflows/gradle-publish.yml@v2.1.0
28+
with:
29+
java-version: "25.0.3"
30+
java-distribution: "temurin"
31+
secrets: inherit

0 commit comments

Comments
 (0)