Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
Signed-off-by: Yang Chiu <[email protected]>
  • Loading branch information
yangchiu committed Aug 19, 2024
1 parent 40f5a17 commit 1311742
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/qase-sync.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: |
test_cases=()
echo "files = ${files[@]}"
files=(${files[@]})
files=(${files})
for file in "${files[@]}"; do
echo "file = $file"
if [[ "${file}" == *"/manual/"* ]]; then
Expand All @@ -41,7 +41,7 @@ jobs:
token: ${{ secrets.QASE_TOKEN }}
test_cases: ${{ env.test_cases }}
run: |
test_cases=(${test_cases[@]})
test_cases=(${test_cases})
for file_path in "${test_cases}"; do
test_case_path=$(echo "${file_path#*manual/}")
IFS='/' read -ra arr <<< "$test_case_path"
Expand Down Expand Up @@ -83,6 +83,7 @@ jobs:
token: ${{ secrets.QASE_TOKEN }}
test_cases: ${{ env.test_cases }}
run: |
test_cases=(${test_cases})
cd docs/content/manual/
for file_path in "${test_cases}"; do
Expand Down

0 comments on commit 1311742

Please sign in to comment.