diff --git a/.forgejo/workflows/pull_request.yaml b/.forgejo/workflows/pull_request.yaml index a521fc0..867e08e 100644 --- a/.forgejo/workflows/pull_request.yaml +++ b/.forgejo/workflows/pull_request.yaml @@ -10,10 +10,10 @@ jobs: name: 'Build and Test Library Snapshot' env: GS_MAVEN_USER: ${{ vars.GS_MAVEN_USER }} - GS_MAVEN_TOKEN: ${{ vars.GS_MAVEN_TOKEN }} + GS_MAVEN_TOKEN: ${{ secrets.GS_MAVEN_TOKEN }} steps: - uses: actions/checkout@v4 - name: 'Checkout ${{ env.GITHUB_HEAD_REF }}' + name: 'Checkout Repository' - name: 'Pre-Commit' run: | pre-commit install diff --git a/project/plugins.sbt b/project/plugins.sbt index 88e2073..49f95ef 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -14,10 +14,6 @@ def selectCredentials(): Credentials = ), passwd = sys.env .get("GS_MAVEN_TOKEN") - .map { x => - println(s"GOT TOKEN = '$x'") - x - } .getOrElse( throw new RuntimeException( "You must either provide ~/.sbt/.credentials or specify the GS_MAVEN_TOKEN environment variable."