We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e72c520 commit da27111Copy full SHA for da27111
.github/workflows/release.yaml
@@ -12,6 +12,8 @@ on:
12
- RELEASE
13
14
env:
15
+ MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
16
+ MAVEN_SECRET: ${{ secrets.MAVEN_SECRET }}
17
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18
19
jobs:
@@ -65,6 +67,11 @@ jobs:
65
67
shell: bash
66
68
run: mv launcher-gui/build/image.zip launcher-gui/build/taulauncher-${{ matrix.os }}.zip
69
70
+ - name: Publish core module
71
+ if: runner.os == 'Linux'
72
+ shell: bash
73
+ run: ./gradlew :launcher-core:publishToMavenLocal -Prelease_channel=${{ inputs.release_type }} --stacktrace
74
+
75
- name: Upload version artifact
76
uses: actions/upload-artifact@v4
77
with:
0 commit comments