We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5ba0240 + 9b308e9 commit 1712c1dCopy full SHA for 1712c1d
3 files changed
VERSION
@@ -1 +1 @@
1
-0.2.4
+0.2.5
action.yml
@@ -80,10 +80,12 @@ runs:
80
run: |
81
echo "${{ github.action_path }}" >> $GITHUB_PATH
82
echo "Running ATS Action version: $(cat ${{ github.action_path }}/dist/VERSION)"
83
- commands=$(${{ github.action_path }}/dist/codecov_ats.sh | tail -n 1)
+
84
+ ${{ github.action_path }}/dist/codecov_ats.sh | tee codecov_ats_output.txt
85
86
if [[ $? == 0 ]]; then
87
echo "Setting CODECOV_ATS_TESTS to GitHub environment"
88
+ commands=$(tail -1 codecov_ats_output.txt)
89
echo "CODECOV_ATS_TESTS=$commands" >> "$GITHUB_ENV"
90
else
91
echo "Codecov: Action failed to successfully run"
dist/VERSION
0 commit comments