We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98efef3 commit 8bf82dbCopy full SHA for 8bf82db
1 file changed
.github/workflows/release-please.yml
@@ -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
29
+ java-version: "25.0.3"
30
+ java-distribution: "temurin"
31
+ secrets: inherit
0 commit comments