Releases: coverallsapp/github-action
v2.3.4
What's Changed
- Add
coverage-reporter-platform
input option by @afinetooth in #233- Since we have added support for
coverage-reporter
onaarch64
, we need to provide users of ourgithub-action
the ability to select this architecture-specific version ofcoverage-reporter
when they're using anaarch64
/arm64
runner in CI.
- Since we have added support for
Full Changelog: v2...v2.3.4
v2.3.3
What's Changed
- Make sure the major version tag always points to the latest release (fixes #222) by @afinetooth in #230
Full Changelog: v2...v2.3.3
v2.3.2
What's Changed
- Verify that
coverage-reporter-version
option is recognized by @afinetooth in #229 - Add
build-number
to supported inputs options by @afinetooth and @brianatgather in #228 - Change
sha256sum
command flag to be compatible withalpine
linux distros by @afinetooth and @jdebbink in #227 - Docs: Fix the action version in usage example by @Jeff-Tian in #210
New Contributors
- @brianatgather made their first contribution in #228 / #199
- @jdebbink made their first contribution in #227 / #198
- @Jeff-Tian made their first contribution in #210
Full Changelog: v2.3.1...v2.3.2
v2.3.1
What's Changed
Extend behavior of fail-on-error
option to setup failures by @afinetooth in #226
-
Technically an enhancement, these changes make the action behave as many customers already expect by ignoring any and all failures when the
fail-on-error
input is set tofalse
. -
Adds logic to handle any failures in "setup" tasks, including downloading the
coverage-reporter
binary, verifying the binary, and finding the binary by its expected name after extraction. -
The new logic checks these actions and exits with code
1
on failure, except iffail-on-error
is set totrue
, in which case it returns exit code0
. -
Adds a matrix workflow that tests the action for each
os
and the two key binary commands (coveralls report
andcoevralls done
). Each of these scenarios implicitly tests our setup tasks since they run first in each scenario. -
Also extends the behavior of
debug: true
to flip the shell-specific debug flag for eachos
includingset -x
forlinux
andmacos
andSet-PSDebug -Trace 1
forwindows
.
Full Changelog: v2.3.0...v2.3.1
v2.3.0
What's Changed
- Set default values as strings per GH Action requirements by @littleforest in #204
- Allow pinning of coverage reporter version by @littleforest in #208
New Contributors
- @littleforest made their first contribution in #204
Full Changelog: v2.2.3...v2.3.0
v2.2.3
2.2.3: fix directory creation on Windows runners
v2.2.2
2.2.2: use pwsh for windows runner
v2.2.1
2.2.1: add measure, files, and fail-on-error options
v2.2.0
2.2.0: allow globs in file option
v1.2.5
1.2.5: add debug option