Skip to content

Commit

Permalink
mv travis to actions
Browse files Browse the repository at this point in the history
  • Loading branch information
yanhuqing666 committed Sep 18, 2024
1 parent 294717b commit 8292eeb
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 26 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/release_attachment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Publish
on:
push:
tags:
- '**'

jobs:
build:
name: Publish binaries
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '8'
cache: 'maven'
- name: Build
run: mvn -B package --file pom.xml
- name: Upload binaries to release
uses: svenstaro/[email protected]
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: target/*-linux.tar.gz
tag: ${{ github.ref }}
overwrite: true
file_glob: true
draft: true
26 changes: 0 additions & 26 deletions .travis.yml

This file was deleted.

0 comments on commit 8292eeb

Please sign in to comment.