We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 225781b + 24cce26 commit 0284936Copy full SHA for 0284936
3 files changed
VERSION
@@ -1 +1 @@
1
-0.2.2
+0.2.3
action.yml
@@ -78,8 +78,9 @@ runs:
78
steps:
79
- id: codecov-ats
80
run: |
81
- echo "Running ATS Action version: $(cat dist/VERSION)"
82
- commands=$(./dist/codecov_ats.sh | tail -n 1)
+ echo "${{ github.action_path }}" >> $GITHUB_PATH
+ echo "Running ATS Action version: $(cat ${{ github.action_path }}dist/VERSION)"
83
+ commands=$(${{ github.action_path }}/dist/codecov_ats.sh | tail -n 1)
84
85
if [[ $? == 0 ]]; then
86
echo "Setting CODECOV_ATS_TESTS to GitHub environment"
dist/VERSION
0 commit comments