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 c12d152 commit 5c87592Copy full SHA for 5c87592
.github/workflows/release.yaml
@@ -41,6 +41,12 @@ jobs:
41
42
steps:
43
- uses: actions/checkout@v2
44
+ - name: Set up JDK 11
45
+ uses: actions/setup-java@v2
46
+ with:
47
+ java-version: "11"
48
+ distribution: "adopt"
49
+ - run: gradle build
50
- uses: cycjimmy/semantic-release-action@v2
51
id: semantic
52
with:
.releaserc
@@ -3,7 +3,17 @@
3
"plugins": [
4
"@semantic-release/commit-analyzer",
5
"@semantic-release/release-notes-generator",
6
- "@semantic-release/github",
+ [
7
+ "@semantic-release/github",
8
+ {
9
+ "assets": [
10
11
+ "path": "app/build/libs/app.jar",
12
+ "label": "Main executable Jar file"
13
+ }
14
+ ]
15
16
+ ],
17
[
18
"@google/semantic-release-replace-plugin",
19
{
0 commit comments