Skip to content

Commit fec16ed

Browse files
committed
fixup! build-git-installers: publish gpg public key
As we did elsewhere, use the `--output tsv` option of `az keyvault` to avoid having the retrieved value be enclosed in double quotes. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent a053985 commit fec16ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build-git-installers.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -780,8 +780,8 @@ jobs:
780780
- name: Download GPG public key signature file
781781
run: |
782782
az keyvault secret show --name "$GPG_PUBLIC_KEY_SECRET_NAME" \
783-
--vault-name "$AZURE_VAULT" --query "value" \
784-
| sed -e 's/^"//' -e 's/"$//' | base64 -d >msft-git-public.asc
783+
--vault-name "$AZURE_VAULT" --query "value" --output tsv |
784+
base64 -d >msft-git-public.asc
785785
mv msft-git-public.asc deb-package
786786
787787
- uses: actions/github-script@v6

0 commit comments

Comments
 (0)