We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1adfab commit d796ab0Copy full SHA for d796ab0
2 files changed
.changeset/perfect-carrots-jam.md
@@ -0,0 +1,5 @@
1
+---
2
+"branch-out-upload": patch
3
4
+
5
+fix: shell variable name
actions/branch-out-upload/action.yml
@@ -63,9 +63,9 @@ runs:
63
JUNIT_FILE_PATH: ${{ inputs.junit-file-path }}
64
run: |
65
echo "Test suite language: $TEST_SUITE_LANGUAGE"
66
- junit-dir=$(dirname $JUNIT_FILE_PATH)
67
- echo "junit-dir=${junit-dir}" | tee -a "$GITHUB_OUTPUT"
68
- echo "JUnit directory: $junit-dir"
+ JUNIT_DIR=$(dirname $JUNIT_FILE_PATH)
+ echo "junit-dir=${JUNIT_DIR}" | tee -a "$GITHUB_OUTPUT"
+ echo "JUnit directory: $JUNIT_DIR"
69
echo "JUnit file path: $JUNIT_FILE_PATH"
70
71
if [[ "$TEST_SUITE_LANGUAGE" == "go" ]]; then
0 commit comments