Skip to content

Commit

Permalink
Update the Get sbt-dynver version CI step
Browse files Browse the repository at this point in the history
  • Loading branch information
johnspade committed May 28, 2023
1 parent 67510a6 commit 63c7eab
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ jobs:
- name: Get sbt-dynver version
id: version
run: echo "version=$(sbt -Dsbt.supershell=false -error ''print frontend/version'')" >> $GITHUB_OUTPUT
run: |
VERSION=$(sbt -Dsbt.ci=true -Dsbt.supershell=false -Dsbt.color=false -Dsbt.log.noformat=true -error "print frontend/version")
echo ${VERSION}
echo "version=${VERSION}" >> $GITHUB_OUTPUT
- name: Compile frontend
run: sbt 'frontend / Compile / fullLinkJS'
Expand Down

0 comments on commit 63c7eab

Please sign in to comment.