Skip to content

Commit

Permalink
Update workflow to deploy JAR version
Browse files Browse the repository at this point in the history
  • Loading branch information
jmccrae committed Feb 23, 2024
1 parent 3feef1e commit 134dcdc
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/scala.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,16 @@ jobs:
cache: 'sbt'
- name: Run tests
run: sbt test
- name: Build assembly
run: sbt assembly
- name: Deploy dev-latest
- name: Update automatic release
uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "dev-latest"
prerelease: true
title: "Latest Version"
files: |
target/scala-2.12/*.jar

0 comments on commit 134dcdc

Please sign in to comment.