From 3d69bc0681c7e350326bc68de3164604e50fa34a Mon Sep 17 00:00:00 2001 From: Justin Debbink Date: Fri, 12 Jan 2024 10:44:35 -0600 Subject: [PATCH] Update to be compatible with alpine distros Use -c instead of --check so sha256sum will work on both alpine and ubuntu distros --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index f7f1b4aa..8c692e21 100644 --- a/action.yml +++ b/action.yml @@ -90,7 +90,7 @@ runs: cd ~/bin/ curl -sLO https://github.com/coverallsapp/coverage-reporter/releases/latest/download/coveralls-linux.tar.gz curl -sLO https://github.com/coverallsapp/coverage-reporter/releases/latest/download/coveralls-checksums.txt - cat coveralls-checksums.txt | grep coveralls-linux.tar.gz | sha256sum --check + cat coveralls-checksums.txt | grep coveralls-linux.tar.gz | sha256sum -c tar -xzf coveralls-linux.tar.gz rm coveralls-checksums.txt echo ~/bin >> $GITHUB_PATH