Skip to content

Commit d65883a

Browse files
committed
mv travis to actions
1 parent 273ae22 commit d65883a

File tree

2 files changed

+28
-26
lines changed

2 files changed

+28
-26
lines changed
+28
Original file line numberDiff line numberDiff line change
@@ -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+
with:
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

-26
This file was deleted.

0 commit comments

Comments
 (0)