Skip to content

Commit 8634b02

Browse files
committed
wip
1 parent 0b1b42b commit 8634b02

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/draft-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -162,17 +162,17 @@ jobs:
162162

163163
- name: Setup GPG
164164
env:
165-
PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
165+
PASSPHRASE: ${{ secrets.RELEASE_SIGN_PASSPHRASE }}
166166
shell: bash
167167
run: |
168-
echo "${{ secrets.GPG_PRIVATE_KEY }}" | gpg --batch --import
168+
echo "${{ secrets.RELEASE_SIGN_PRIVATE_KEY }}" | gpg --batch --import
169169
printf '%s' "$PASSPHRASE" | gpg --batch --yes --pinentry-mode loopback --passphrase-fd 0 --local-user "${{ secrets.GPG_KEY_ID }}" --armor --detach-sign -o /dev/null /dev/null
170170
171171
- name: Generate and Sign Checksums
172172
id: checksum
173173
shell: bash
174174
env:
175-
PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
175+
PASSPHRASE: ${{ secrets.RELEASE_SIGN_PASSPHRASE }}
176176
run: |
177177
CHECKSUM_FILE="${{ needs.prepare.outputs.conan_version }}-SHA-256.txt"
178178
cd dist
@@ -184,7 +184,7 @@ jobs:
184184
- name: Verify Signed Checksums
185185
shell: bash
186186
run: |
187-
echo "${{ secrets.GPG_PUBLIC_KEY }}" | gpg --batch --import
187+
echo "${{ secrets.RELEASE_SIGN_PUBLIC_KEY }}" | gpg --batch --import
188188
gpg --verify dist/${{ steps.checksum.outputs.checksum_file_name }}.asc dist/${{ steps.checksum.outputs.checksum_file_name }}
189189
190190
- name: Cleanup GPG keys

0 commit comments

Comments
 (0)