Update the builds to use SBT native client.
Some checks failed
/ Build and Test Library Snapshot (pull_request) Failing after 53s

This commit is contained in:
Pat Garrity 2024-03-20 21:45:21 -05:00
parent 78169dc5b3
commit f2eebe3cdb
Signed by: pfm
GPG key ID: 5CA5D21BAB7F3A76
2 changed files with 4 additions and 4 deletions

View file

@ -19,6 +19,6 @@ jobs:
pre-commit install
pre-commit run --all-files
- name: 'Unit Tests and Code Coverage'
run: sbt clean coverage test coverageReport
run: sbtn clean coverage test coverageReport
- name: 'Publish Snapshot'
run: sbt clean publish
run: sbtn clean publish

View file

@ -29,9 +29,9 @@ jobs:
pre-commit install
pre-commit run --all-files
- name: 'Unit Tests and Code Coverage'
run: sbt clean coverage test coverageReport
run: sbtn clean coverage test coverageReport
- name: 'Publish Release'
run: sbt "-Drelease=$GS_RELEASE_TYPE" clean semVerWriteVersionToFile publish
run: sbtn "-Drelease=$GS_RELEASE_TYPE" clean semVerWriteVersionToFile publish
- name: 'Create Git Tag'
run: |
selected_version="$(cat .version)"