Skip to content

Commit

Permalink
Update Github to include sbt installation
Browse files Browse the repository at this point in the history
  • Loading branch information
joaolcorreia authored Jan 10, 2025
1 parent bf1424c commit 6f8cc7e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,15 @@ jobs:
with:
java-version: 11
distribution: 'corretto'
- name: Install sbt
run: |
echo "deb https://repo.scala-sbt.org/scalasbt/debian all main" | sudo tee /etc/apt/sources.list.d/sbt.list
curl -sL "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x99e82a75642ac823" | sudo apt-key add
sudo apt-get update
sudo apt-get install sbt
- name: Verify sbt installation
run: sbt --version
- name: Get current version
id: ver
run: echo "project_version=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 6f8cc7e

Please sign in to comment.