We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64f0d18 commit 92c8c92Copy full SHA for 92c8c92
.github/workflows/build.yml
@@ -3,7 +3,7 @@ name: Build
3
on:
4
push:
5
branches:
6
- - main
+ - ci
7
8
jobs:
9
build:
@@ -30,4 +30,12 @@ jobs:
30
uses: actions/upload-artifact@v4
31
with:
32
name: Artifacts
33
- path: build/libs/*.jar
+ path: build/libs/*.jar
34
+
35
+ - name: Upload to maven
36
+ env:
37
+ GITHUB_TOKEN: ${{ secrets.PACKAGE_SECRET }}
38
+ GITHUB_USERNAME: ${{ github.actor }}
39
+ GITHUB_REPOSITORY: ${{ github.repository }}
40
+ run:
41
+ ./gradlew publish --no-daemon --no-parallel --stacktrace --info
0 commit comments