Skip to content

Merge branch 'master' of https://github.com/genepi/cloudgene into rel… #9

Merge branch 'master' of https://github.com/genepi/cloudgene into rel…

Merge branch 'master' of https://github.com/genepi/cloudgene into rel… #9

Workflow file for this run

name: Create Release
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up JDK 12
uses: actions/setup-java@v2
with:
java-version: '12'
distribution: 'adopt'
- name: Build MIS
run: mvn install
- uses: ncipollo/release-action@v1
with:
allowUpdates: true
artifacts: "target/cloudgene-installer.sh"
token: ${{ secrets.GITHUB_TOKEN }}