diff options
author | Junio C Hamano <gitster@pobox.com> | 2020-11-17 12:10:35 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-11-17 12:12:30 -0800 |
commit | 92bf1b6067381047b814800b27a17188e83b5746 (patch) | |
tree | 2062fb855e55003a06dcf74e46487c13d732be88 /ci/print-test-failures.sh | |
parent | ci: avoid using the deprecated `set-env` construct (diff) | |
download | tgif-92bf1b6067381047b814800b27a17188e83b5746.tar.xz |
ci: avoid `set-env` construct in print-test-failures.sh
Imitating cac42e47 (ci: avoid using the deprecated `set-env`
construct, 2020-11-07), avoid deprecated ::set-env and use the
recommended alternative instead in print-test-failures.sh
Helped-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'ci/print-test-failures.sh')
-rwxr-xr-x | ci/print-test-failures.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/print-test-failures.sh b/ci/print-test-failures.sh index 92a983a265..c70d6cdbf2 100755 --- a/ci/print-test-failures.sh +++ b/ci/print-test-failures.sh @@ -48,7 +48,7 @@ do ;; github-actions) mkdir -p failed-test-artifacts - echo "::set-env name=FAILED_TEST_ARTIFACTS::t/failed-test-artifacts" + echo "FAILED_TEST_ARTIFACTS=t/failed-test-artifacts" >>$GITHUB_ENV cp "${TEST_EXIT%.exit}.out" failed-test-artifacts/ tar czf failed-test-artifacts/"$test_name".trash.tar.gz "$trash_dir" continue |