We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7db85c1 commit 52b9aaeCopy full SHA for 52b9aae
nix/packages/github-matrix/github_matrix.py
@@ -259,8 +259,9 @@ def clean_package_for_output(pkg: NixEvalJobsOutput) -> GitHubActionPackage:
259
gh_output[system.replace("-", "_")] = {"include": packages}
260
261
for system in get_args(System):
262
- if system not in gh_output:
263
- gh_output[system.replace("-", "_")] = {
+ s = system.replace("-", "_")
+ if s not in gh_output:
264
+ gh_output[s] = {
265
"include": [
266
{
267
"attr": "",
0 commit comments