omg i fixed it
All checks were successful
/ Build and Test Library Snapshot (pull_request) Successful in 1m18s

This commit is contained in:
Pat Garrity 2024-03-18 21:13:24 -05:00
parent 5b7c16cb48
commit 4a9c972917
Signed by: pfm
GPG key ID: 5CA5D21BAB7F3A76
2 changed files with 2 additions and 6 deletions

View file

@ -10,10 +10,10 @@ jobs:
name: 'Build and Test Library Snapshot' name: 'Build and Test Library Snapshot'
env: env:
GS_MAVEN_USER: ${{ vars.GS_MAVEN_USER }} GS_MAVEN_USER: ${{ vars.GS_MAVEN_USER }}
GS_MAVEN_TOKEN: ${{ vars.GS_MAVEN_TOKEN }} GS_MAVEN_TOKEN: ${{ secrets.GS_MAVEN_TOKEN }}
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
name: 'Checkout ${{ env.GITHUB_HEAD_REF }}' name: 'Checkout Repository'
- name: 'Pre-Commit' - name: 'Pre-Commit'
run: | run: |
pre-commit install pre-commit install

View file

@ -14,10 +14,6 @@ def selectCredentials(): Credentials =
), ),
passwd = sys.env passwd = sys.env
.get("GS_MAVEN_TOKEN") .get("GS_MAVEN_TOKEN")
.map { x =>
println(s"GOT TOKEN = '$x'")
x
}
.getOrElse( .getOrElse(
throw new RuntimeException( throw new RuntimeException(
"You must either provide ~/.sbt/.credentials or specify the GS_MAVEN_TOKEN environment variable." "You must either provide ~/.sbt/.credentials or specify the GS_MAVEN_TOKEN environment variable."