There was an error while loading. Please reload this page.
1 parent a40ed58 commit 14ff4e0Copy full SHA for 14ff4e0
1 file changed
.github/workflows/release.yml
@@ -88,7 +88,11 @@ jobs:
88
import os, yaml, json
89
with open("config.yml", "r") as f:
90
config = yaml.safe_load(f)
91
- matrix = {"include": config}
+
92
+ # Filter out build_only configurations for release
93
+ release_config = [item for item in config if not item.get('build_only', False)]
94
95
+ matrix = {"include": release_config}
96
with open(os.environ["GITHUB_OUTPUT"], "a") as fh:
97
print(f"matrix={json.dumps(matrix)}", file=fh)
98
0 commit comments