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 1741dbc commit 36b0e26Copy full SHA for 36b0e26
1 file changed
.github/workflows/release.yml
@@ -1,13 +1,11 @@
1
-name: Gradle build
+name: Releases
2
3
on:
4
push:
5
branches:
6
- - master
7
- main
8
pull_request:
9
10
11
12
13
jobs:
@@ -29,4 +27,9 @@ jobs:
29
27
uses: actions/upload-artifact@v1
30
28
with:
31
name: Artifacts
32
- path: build/libs/
+ path: build/libs/
+ - uses: ncipollo/release-action@v1
+ with:
33
+ artifacts: "build/libs/*.jar"
34
+ token: ${{ secrets.GITHUB_TOKEN }}
35
+ draft: true
0 commit comments