@@ -55,29 +55,29 @@ jobs:
5555 name : ${{ env.BIN_NAME }}
5656 path : ${{ env.BIN_NAME }}
5757
58- decrypt-secret :
59- name : Decrypt Secret File
60- runs-on : ubuntu-latest
61- steps :
62- - name : Checkout code
63- uses : actions/checkout@v4
58+ # decrypt-secret:
59+ # name: Decrypt Secret File
60+ # runs-on: ubuntu-latest
61+ # steps:
62+ # - name: Checkout code
63+ # uses: actions/checkout@v4
6464
65- - name : Import GPG private key
66- run : |
67- echo "$GPG_PRIVATE_KEY" | gpg --batch --import
68- env :
69- GPG_PRIVATE_KEY : ${{ secrets.GPG_PRIVATE_KEY }}
65+ # - name: Import GPG private key
66+ # run: |
67+ # echo "$GPG_PRIVATE_KEY" | gpg --batch --import
68+ # env:
69+ # GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
7070
71- - name : Decrypt secret file
72- run : |
73- gpg --quiet --batch --yes --decrypt --passphrase="$GPG_PASSPHRASE" \
74- --output secret.txt secret.txt.gpg
75- env :
76- GPG_PASSPHRASE : ${{ secrets.GPG_PASSPHRASE }}
71+ # - name: Decrypt secret file
72+ # run: |
73+ # gpg --quiet --batch --yes --decrypt --passphrase="$GPG_PASSPHRASE" \
74+ # --output secret.txt secret.txt.gpg
75+ # env:
76+ # GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
7777
7878 release-and-tag :
7979 name : Tag and Release
80- needs : [ build-and-scan, decrypt-secret]
80+ needs : build-and-scan
8181 uses : KshitijaKakde/common-github-actions/.github/workflows/release-creator.yaml@main
8282 with :
8383 version : ${{ inputs.version }}
0 commit comments