Skip to content

Commit 21fdf05

Browse files
Update create-tag-release.yaml
1 parent 85789a1 commit 21fdf05

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

.github/workflows/create-tag-release.yaml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)