BewareMyPower opened a new issue, #559: URL: https://github.com/apache/pulsar-client-cpp/issues/559
See https://github.com/apache/pulsar-client-cpp/actions/runs/23469538356 <img width="1462" height="385" alt="Image" src="https://github.com/user-attachments/assets/f25236b6-a511-4a4d-8560-8278527d8c45" /> We should skip the `dockerbuild` files: ```diff diff --git a/build-support/download-release-artifacts.py b/build-support/download-release-artifacts.py index 9b1866f..8ccd0f8 100755 --- a/build-support/download-release-artifacts.py +++ b/build-support/download-release-artifacts.py @@ -47,7 +47,7 @@ with requests.get(workflow_run_url, headers=headers) as response: for artifact in data['artifacts']: name = artifact['name'] # Skip debug artifact - if name.endswith("-Debug"): + if name.endswith("-Debug") or name.find("dockerbuild") >= 0: continue dest_dir = os.path.join(dest_path, name) if name.find("windows") >= 0 and os.path.exists(dest_dir + ".tar.gz"): ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
