Skip to content

Commit 0649952

Browse files
committed
Fix create-release: define repo in trigger function
1 parent f93e392 commit 0649952

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

scripts/create-release.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ def bump_version_files(tag):
8282
def trigger_and_wait_cache_build():
8383
"""Trigger a new build-cache CI run and wait for it to complete."""
8484
import subprocess, json, time
85+
repo = "processing-cpp/processing.cpp"
8586
print("Triggering build-cache CI run...")
8687
r = subprocess.run(
8788
["gh", "workflow", "run", "build-cache.yml", "--repo", repo],
@@ -153,6 +154,7 @@ def download_cache_artifacts():
153154
def trigger_and_wait_cache_build():
154155
"""Trigger a new build-cache CI run and wait for it to complete."""
155156
import subprocess, json, time
157+
repo = "processing-cpp/processing.cpp"
156158
print("Triggering build-cache CI run...")
157159
r = subprocess.run(
158160
["gh", "workflow", "run", "build-cache.yml", "--repo", repo],

0 commit comments

Comments
 (0)