We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb9392a commit a9b61daCopy full SHA for a9b61da
.github/workflows/release.yml
@@ -4,6 +4,7 @@ on:
4
push:
5
branches:
6
- main
7
+ - feature/FAC-158_gain-more-artifacthub-recognition
8
9
jobs:
10
release:
@@ -21,10 +22,14 @@ jobs:
21
22
23
- name: Prepare GPG Key
24
run: |
25
+ set -x
26
+
27
echo "${{ secrets.GPG_PRIVATE_KEY }}" | gpg --batch --import
28
echo "${{ secrets.GPG_PASSPHRASE }}" > passphrase.txt
29
# Run the complex command here and save its output to a file
30
gpg --list-secret-keys --with-colons | grep 'sec' | cut -d: -f5 > gpg_key_id.txt
31
32
+ echo "$GPG_KEY_ID" > gpg_key_id.txt
33
env:
34
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
35
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
0 commit comments