Skip to content

Commit d796ab0

Browse files
committed
fix: branch-out-upload shell variable
1 parent a1adfab commit d796ab0

2 files changed

Lines changed: 8 additions & 3 deletions

File tree

.changeset/perfect-carrots-jam.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"branch-out-upload": patch
3+
---
4+
5+
fix: shell variable name

actions/branch-out-upload/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ runs:
6363
JUNIT_FILE_PATH: ${{ inputs.junit-file-path }}
6464
run: |
6565
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"
66+
JUNIT_DIR=$(dirname $JUNIT_FILE_PATH)
67+
echo "junit-dir=${JUNIT_DIR}" | tee -a "$GITHUB_OUTPUT"
68+
echo "JUnit directory: $JUNIT_DIR"
6969
echo "JUnit file path: $JUNIT_FILE_PATH"
7070
7171
if [[ "$TEST_SUITE_LANGUAGE" == "go" ]]; then

0 commit comments

Comments
 (0)