Skip to content

Commit a9e5913

Browse files
dhusebyDave Grantham
andauthored
fix paths in actions (#779)
Signed-off-by: Dave Grantham <dwg@linuxprogrammer.org> Co-authored-by: Dave Grantham <dwg@linuxprogrammer.org>
1 parent 1381eb7 commit a9e5913

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/actions/run-bash-hole-punch-test/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ runs:
110110
shell: bash
111111
run: |
112112
# Find the most recent test pass directory
113-
TEST_PASS_DIR=$(ls -td ${{ inputs.cache-dir }}/test-runs/hole-punch-* 2>/dev/null | grep -v '\.zip$' | head -1 || echo "")
113+
TEST_PASS_DIR=$(ls -td ${{ inputs.cache-dir }}/test-run/hole-punch-* 2>/dev/null | grep -v '\.zip$' | head -1 || echo "")
114114
115115
if [ -z "$TEST_PASS_DIR" ]; then
116116
echo "Error: Could not find test pass directory"

.github/actions/run-bash-perf-test/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ runs:
150150
shell: bash
151151
run: |
152152
# Find the most recent test pass directory
153-
TEST_PASS_DIR=$(ls -td ${{ inputs.cache-dir }}/test-runs/perf-* 2>/dev/null | grep -v '\.zip$' | head -1 || echo "")
153+
TEST_PASS_DIR=$(ls -td ${{ inputs.cache-dir }}/test-run/perf-* 2>/dev/null | grep -v '\.zip$' | head -1 || echo "")
154154
155155
if [ -z "$TEST_PASS_DIR" ]; then
156156
echo "Error: Could not find test pass directory"

.github/actions/run-bash-transport-test/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ runs:
9090
shell: bash
9191
run: |
9292
# Find the most recent test pass directory
93-
TEST_PASS_DIR=$(ls -td ${{ inputs.cache-dir }}/test-runs/transport-interop-* 2>/dev/null | grep -v '\.zip$' | head -1 || echo "")
93+
TEST_PASS_DIR=$(ls -td ${{ inputs.cache-dir }}/test-run/transport-* 2>/dev/null | grep -v '\.zip$' | head -1 || echo "")
9494
9595
if [ -z "$TEST_PASS_DIR" ]; then
9696
echo "Error: Could not find test pass directory"

0 commit comments

Comments
 (0)