Compare commits

...
2 Commits
Author SHA1 Message Date
Greg Hellings 8de9f6eb71 Add arm for testing in the future
buildbot/nix-eval Build done.
buildbot/nix-build Build done.
buildbot/nix-effects Build done.
build.yml / build (ucrt) (push) Failing after 8m58s
build.yml / build (x86) (push) Failing after 22m22s
build.yml / release (push) Skipped
2026-08-05 22:23:26 -05:00
Greg Hellings 002897dfdc Fix artifact path 2026-08-05 22:03:49 -05:00
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -23,7 +23,7 @@ jobs:
uses: actions/upload-artifact@v7 uses: actions/upload-artifact@v7
with: with:
name: ${{ matrix.arch }} name: ${{ matrix.arch }}
path: "*.zip" path: "*.tar.xz"
release: release:
needs: build needs: build
@@ -36,4 +36,4 @@ jobs:
uses: actions/gitea-release-action@v1 uses: actions/gitea-release-action@v1
with: with:
files: |- files: |-
"*.zip" "*.tar.xz"
+1 -1
View File
@@ -117,7 +117,7 @@
default = tar mingwW64; default = tar mingwW64;
x86 = tar mingwW64; x86 = tar mingwW64;
ucrt = tar ucrt64; ucrt = tar ucrt64;
#ucrtAarch = tar ucrtAarch64; arm = tar ucrtAarch64;
update = pkgs.callPackage ./update.nix { }; update = pkgs.callPackage ./update.nix { };
}; };
}; };