Merge pull request #11 from GiganticMinecraft/renovate/org.typelevel-… #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build jar and publish it in a docker container | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@master | |
with: | |
submodules: recursive | |
- name: Build artifact | |
run: sbt assembly | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: ./target/build/BungeeSemaphore.jar | |
draft: false | |
prerelease: false | |
tag_name: release-at-${{ github.sha }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |