mirror of
https://github.com/fluencelabs/aqua.git
synced 2024-12-04 14:40:17 +00:00
CI: Release on each commit (#7)
This commit is contained in:
parent
b5e4dc1caa
commit
e37f30a4eb
33
.github/workflows/release.yml
vendored
Normal file
33
.github/workflows/release.yml
vendored
Normal file
@ -0,0 +1,33 @@
|
||||
name: "release"
|
||||
|
||||
on:
|
||||
push:
|
||||
# tags:
|
||||
# - "v*"
|
||||
branches:
|
||||
- "master"
|
||||
|
||||
jobs:
|
||||
release:
|
||||
name: "Release"
|
||||
runs-on: "ubuntu-latest"
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
### Setup
|
||||
- uses: olafurpg/setup-scala@v10
|
||||
- name: Assembly
|
||||
run: sbt assembly
|
||||
|
||||
### Update & build
|
||||
|
||||
### Create release
|
||||
- uses: marvinpinto/action-automatic-releases@latest
|
||||
with:
|
||||
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
||||
automatic_release_tag: "latest"
|
||||
prerelease: false
|
||||
files: |
|
||||
target/scala-2.13/aqua-hll.jar
|
Loading…
Reference in New Issue
Block a user