Compare commits

..

1 Commits

Author SHA1 Message Date
codecov-releaser 88102bac09 chore(release): wrapper-0.0.23 2024-11-14 15:24:40 +00:00
2 changed files with 5 additions and 9 deletions
+3 -4
View File
@@ -11,10 +11,9 @@
### Migration Guide ### Migration Guide
The `v5` release also coincides with the opt-out feature for tokens for public repositories. In the repository settings page in codecov.io, you can set the ability for Codecov to receive a coverage report from ANY souce. This will allow contributors or other members of a repository to upload without needing access to the Codecov token. The `v5` release also coincides with the opt-out feature for tokens for public repositories. In the repository settings page in codecov.io, you can set the ability for Codecov to receive a coverage report from ANY souce. This will allow contributors or other members of a repository to upload without needing access to the Codecov token.
> [!WARNING] **The following arguments have been changed**
> **The following arguments have been changed** - `file` (this has been deprecated in favor of `files`)
> - `file` (this has been deprecated in favor of `files`) - `plugin` (this has been deprecated in favor of `plugins`)
> - `plugin` (this has been deprecated in favor of `plugins`)
The following arguments have been added: The following arguments have been added:
+2 -5
View File
@@ -1,5 +1,5 @@
#!/usr/bin/env bash #!/usr/bin/env bash
CC_WRAPPER_VERSION="0.0.23" CC_WRAPPER_VERSION="0.0.22"
set +u set +u
say() { say() {
echo -e "$1" echo -e "$1"
@@ -80,16 +80,13 @@ else
say "$g ->$x Downloading $b${cc_url}$x" say "$g ->$x Downloading $b${cc_url}$x"
curl -Os $cc_url curl -Os $cc_url
say "$g==>$x Finishing downloading $b${cc_os}:${CC_VERSION}$x" say "$g==>$x Finishing downloading $b${cc_os}:${CC_VERSION}$x"
version_url="https://cli.codecov.io/${cc_os}/${CC_VERSION}"
version=$(curl -s $version_url -H "Accept:application/json" | jq -r '.version')
say " Version: $b$version$x"
say " " say " "
fi fi
if [ "$CC_SKIP_VALIDATION" = "true" ] || [ -n "$CC_BINARY" ]; if [ "$CC_SKIP_VALIDATION" = "true" ] || [ -n "$CC_BINARY" ];
then then
say "$r==>$x Bypassing validation as requested by user" say "$r==>$x Bypassing validation as requested by user"
else else
CC_PUBLIC_PGP_KEY=$(curl -s https://keybase.io/codecovsecurity/pgp_keys.asc) CC_PUBLIC_PGP_KEY=$(curl https://keybase.io/codecovsecurity/pgp_keys.asc)
echo "${CC_PUBLIC_PGP_KEY}" | \ echo "${CC_PUBLIC_PGP_KEY}" | \
gpg --no-default-keyring --import gpg --no-default-keyring --import
# One-time step # One-time step