Skip to content

Commit 1712c1d

Browse files
Merge pull request #25 from codecov/0.2.5
fix: give it quotes
2 parents 5ba0240 + 9b308e9 commit 1712c1d

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.4
1+
0.2.5

action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,12 @@ runs:
8080
run: |
8181
echo "${{ github.action_path }}" >> $GITHUB_PATH
8282
echo "Running ATS Action version: $(cat ${{ github.action_path }}/dist/VERSION)"
83-
commands=$(${{ github.action_path }}/dist/codecov_ats.sh | tail -n 1)
83+
84+
${{ github.action_path }}/dist/codecov_ats.sh | tee codecov_ats_output.txt
8485
8586
if [[ $? == 0 ]]; then
8687
echo "Setting CODECOV_ATS_TESTS to GitHub environment"
88+
commands=$(tail -1 codecov_ats_output.txt)
8789
echo "CODECOV_ATS_TESTS=$commands" >> "$GITHUB_ENV"
8890
else
8991
echo "Codecov: Action failed to successfully run"

dist/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.4
1+
0.2.5

0 commit comments

Comments
 (0)