| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent ca0a928 commit fb8b358
5 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,7 +1,7 @@ | |||
| 1 | 1 | deploy: | |
| 2 | 2 | $(eval VERSION := $(shell cat src/version)) | |
| 3 | - git tag -d v6 | ||
| 4 | - git push origin :v6 | ||
| 5 | - git tag v6 | ||
| 3 | + git tag -d v7 | ||
| 4 | + git push origin :v7 | ||
| 5 | + git tag v7 | ||
| 6 | 6 | git tag v$(VERSION) -s -m "" | |
| 7 | 7 | git push origin --tags | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -6,6 +6,10 @@ | |||
| 6 | 6 | ||
| 7 | 7 | ### Easily upload coverage reports to Codecov from GitHub Actions | |
| 8 | 8 | ||
| 9 | + ## v7 Release | ||
| 10 | + | ||
| 11 | + `v7` of the Codecov GitHub Action bumps the [Codecov Wrapper](https://github.com/codecov/wrapper) submodule, which now fetches the Codecov Uploader PGP verification key from the `codecovsecops` Keybase account. | ||
| 12 | + | ||
| 9 | 13 | ## v6 Release | |
| 10 | 14 | ||
| 11 | 15 | `v6` of the Codecov GitHub Action support node24 | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -37,7 +37,7 @@ g="\033[0;32m" # info/debug | |||
| 37 | 37 | r="\033[0;31m" # errors | |
| 38 | 38 | x="\033[0m" | |
| 39 | 39 | retry="--retry 5 --retry-delay 2" | |
| 40 | - CC_WRAPPER_VERSION="0.2.7" | ||
| 40 | + CC_WRAPPER_VERSION="0.2.9" | ||
| 41 | 41 | CC_VERSION="${CC_VERSION:-latest}" | |
| 42 | 42 | CC_FAIL_ON_ERROR="${CC_FAIL_ON_ERROR:-false}" | |
| 43 | 43 | CC_RUN_CMD="${CC_RUN_CMD:-upload-coverage}" | |
@@ -69,7 +69,13 @@ then | |||
| 69 | 69 | exit_if_error "Could not install via pypi." | |
| 70 | 70 | exit | |
| 71 | 71 | fi | |
| 72 | - CC_COMMAND="${CC_CLI_TYPE}" | ||
| 72 | + if [[ "$CC_CLI_TYPE" == "codecov-cli" ]]; then | ||
| 73 | + CC_COMMAND="codecovcli" | ||
| 74 | + elif [[ "$CC_CLI_TYPE" == "sentry-prevent-cli" ]]; then | ||
| 75 | + CC_COMMAND="sentry-prevent-cli" | ||
| 76 | + else | ||
| 77 | + CC_COMMAND="${CC_CLI_TYPE}" | ||
| 78 | + fi | ||
| 73 | 79 | else | |
| 74 | 80 | if [ -n "$CC_OS" ]; | |
| 75 | 81 | then | |
@@ -110,7 +116,7 @@ then | |||
| 110 | 116 | chmod +x "$CC_COMMAND" | |
| 111 | 117 | fi | |
| 112 | 118 | else | |
| 113 | - echo "$(curl -s https://keybase.io/codecovsecurity/pgp_keys.asc)" | \ | ||
| 119 | + echo "$(curl -s https://keybase.io/codecovsecops/pgp_keys.asc)" | \ | ||
| 114 | 120 | gpg --no-default-keyring --import | |
| 115 | 121 | # One-time step | |
| 116 | 122 | say "$g==>$x Verifying GPG signature integrity" | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1 +1 @@ | |||
| 1 | - 6.0.1 | ||
| 1 | + 7.0.0 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments