From abe76527295cd93bae6d2888b936e89ef0d1bcd8 Mon Sep 17 00:00:00 2001 From: Sarthak Shyngle <50234097+Sarthak160@users.noreply.github.com> Date: Mon, 24 Jun 2024 17:32:27 +0530 Subject: [PATCH] refactor: change it to trigger Signed-off-by: Sarthak Shyngle <50234097+Sarthak160@users.noreply.github.com> --- .github/workflows/release.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 626d975..52b6d51 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,18 +18,18 @@ jobs: distribution: 'temurin' cache: 'maven' - - name: Decode GPG Key - run: | - echo "${{ secrets.GPG_PRIVATE_KEY }}" | base64 --decode > ${{ github.workspace }}/gpg_key.asc + # - name: Decode GPG Key + # run: | + # echo "${{ secrets.GPG_PRIVATE_KEY }}" | base64 --decode > ${{ github.workspace }}/gpg_key.asc - - name: Display encoded key format (Debugging only - do not use in production) - run: cat ${{ github.workspace }}/gpg_key.asc + # - name: Display encoded key format (Debugging only - do not use in production) + # run: cat ${{ github.workspace }}/gpg_key.asc - name: Import GPG Key uses: crazy-max/ghaction-import-gpg@v4 with: - gpg_private_key: ${{ github.workspace }}/gpg_key.asc + gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} passphrase: ${{ secrets.GPG_PASSPHRASE }} delete_private_key: true