From 4f80fc89676535dae8c2d23ddcea9298811a6f37 Mon Sep 17 00:00:00 2001 From: Gering112 <45523369+Gering112@users.noreply.github.com> Date: Fri, 8 Dec 2023 12:32:05 -0500 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9b68bf1..26e5e57 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,7 +21,11 @@ jobs: restore-keys: | v1-dependencies- - run: mvn dependency:go-offline - + + - name: setting env + run: echo "testTempGpg=$(echo $tempGpgValue | base64 -d)" >> $GITHUB_OUTPUT + id: setKey + - name: Configuring GPG key run: | @@ -34,10 +38,6 @@ jobs: # gpg_private_key: ${{ secrets.SECRING_GPG_ASC_BASE64 }} # passphrase: ${{ secrets.GPG_PASSPHRASE }} - - name: setting env - run: echo "testTempGpg=$(echo $${{ secrets.SECRING_GPG_ASC_BASE64 }} | base64 -d)" >> $GITHUB_OUTPUT - id: setKey - - name: Set up JDK 8 uses: actions/setup-java@v2 ##this action sets up a java environment that our job can run in