Skip to content

Commit 3daef9d

Browse files
committed
✏️ Fix the bug about it should download the target files at the specific file paths.
1 parent ab27afd commit 3daef9d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/rw_parse_release_intent.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
echo "Checking for required CI script files..."
9191
9292
# Create scripts directory if it doesn't exist
93-
mkdir -p scripts/ci
93+
mkdir -p ./scripts/ci
9494
9595
# Function to download file if it doesn't exist
9696
download_if_missing() {
@@ -109,9 +109,9 @@ jobs:
109109
# Download required files from template repository
110110
BASE_URL="https://raw.githubusercontent.com/Chisanan232/Template-Python-UV-Project/master"
111111
112-
download_if_missing "scripts/pyproject.toml" "$BASE_URL/scripts/pyproject.toml"
113-
download_if_missing "scripts/uv.lock" "$BASE_URL/scripts/uv.lock"
114-
download_if_missing "scripts/ci/release_intent.py" "$BASE_URL/scripts/ci/release_intent.py"
112+
download_if_missing "./scripts/pyproject.toml" "$BASE_URL/scripts/pyproject.toml"
113+
download_if_missing "./scripts/uv.lock" "$BASE_URL/scripts/uv.lock"
114+
download_if_missing "./scripts/ci/release_intent.py" "$BASE_URL/scripts/ci/release_intent.py"
115115
116116
echo "All required CI script files are ready!"
117117

0 commit comments

Comments
 (0)