Skip to content

Commit

Permalink
Release
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonMeep committed Sep 9, 2022
1 parent 80b5da6 commit df74910
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/jvm.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Build for JVM
on: [ push ]
on:
push:
branches: [ master ]
tags:
- "v*.*.*"

jobs:
build:
Expand All @@ -23,9 +27,15 @@ jobs:
- name: Build with Gradle
uses: gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1
with:
arguments: installDist --no-daemon
arguments: installDist distZip --no-daemon

- uses: actions/upload-artifact@v3
with:
name: tnt-jvm
path: build/install/

- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: build/distributions/*

0 comments on commit df74910

Please sign in to comment.