Skip to content

(FORK COMMIT) Make release with QC changes (2.0.0-beta2) #12

(FORK COMMIT) Make release with QC changes (2.0.0-beta2)

(FORK COMMIT) Make release with QC changes (2.0.0-beta2) #12

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 -Dtest=AllTestsNoChrX install
- uses: ncipollo/release-action@v1
with:
allowUpdates: true
artifacts: "target/imputationserver.zip"
token: ${{ secrets.GITHUB_TOKEN }}