From 4a9c9729178c545055ce58e9b5a5f2100d64ad52 Mon Sep 17 00:00:00 2001 From: Pat Garrity Date: Mon, 18 Mar 2024 21:13:24 -0500 Subject: [PATCH] omg i fixed it --- .forgejo/workflows/pull_request.yaml | 4 ++-- project/plugins.sbt | 4 ---- 2 files changed, 2 insertions(+), 6 deletions(-) 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."