Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
lukfor committed Mar 14, 2024
2 parents 588c1e5 + c9db004 commit d0779f9
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Create Release

on:
push:
tags:
- '*'
jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Install JDK 11
uses: actions/setup-java@v1
with:
java-version: 11

- name: Build
run: mvn -B install

- uses: ncipollo/release-action@v1
with:
allowUpdates: true
artifacts: "target/genomic-utils.jar"
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit d0779f9

Please sign in to comment.