Skip to content

Commit ded5a9a

Browse files
committed
🔧 Update Codecov verification method in CI pipeline
1 parent c019b96 commit ded5a9a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

azure-pipelines.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,12 @@ steps:
7878
7979
- bash: |
8080
echo "Exit Code was: $(exit_code)"
81-
curl https://keybase.io/codecovsecurity/pgp_keys.asc | gpg --no-default-keyring --keyring trustedkeys.gpg --import
81+
curl https://keybase.io/codecovsecurity/pgp_keys.asc | gpg --no-default-keyring --keyring trustedkeys.gpg --import # One-time step
8282
curl -Os https://cli.codecov.io/latest/macos/codecov
8383
curl -Os https://cli.codecov.io/latest/macos/codecov.SHA256SUM
8484
curl -Os https://cli.codecov.io/latest/macos/codecov.SHA256SUM.sig
85-
gpgv codecov.SHA256SUM.sig codecov.SHA256SUM
85+
gpg --verify codecov.SHA256SUM.sig codecov.SHA256SUM
86+
8687
shasum -a 256 -c codecov.SHA256SUM
8788
chmod +x codecov
8889
if [ "$(exit_code)" != "124" ]; then

0 commit comments

Comments
 (0)