Skip to content

Commit

Permalink
Create create-release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lukfor authored Mar 14, 2024
1 parent 44594c5 commit a89ed64
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 install

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

0 comments on commit a89ed64

Please sign in to comment.