We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 273ae22 commit d65883aCopy full SHA for d65883a
.github/workflows/release_attachment.yml
@@ -0,0 +1,28 @@
1
+name: Publish
2
+on:
3
+ push:
4
+ tags:
5
+ - '**'
6
+
7
+jobs:
8
+ build:
9
+ name: Publish binaries
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - uses: actions/setup-java@v4
14
+ with:
15
+ distribution: 'temurin'
16
+ java-version: '8'
17
+ cache: 'maven'
18
+ - name: Build
19
+ run: mvn -B package --file pom.xml
20
+ - name: Upload binaries to release
21
+ uses: svenstaro/[email protected]
22
23
+ repo_token: ${{ secrets.GITHUB_TOKEN }}
24
+ file: target/*-linux.tar.gz
25
+ tag: ${{ github.ref }}
26
+ overwrite: true
27
+ file_glob: true
28
+ draft: true
.travis.yml
0 commit comments