feat: add workflow to build docker image (#921)

* feat: add all platform to build with nix

* fix: action do not work because pr confilct

* feat: add workflow to build docker

* chore: bump deps

* feat: add workflow to build docker

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Nobody6825
2024-06-06 14:15:12 +08:00
committed by GitHub
parent 835ba2617f
commit 180f7564f3
4 changed files with 91 additions and 43 deletions

View File

@@ -12,8 +12,10 @@
nixpkgs,
flake-utils,
gomod2nix,
}: (
flake-utils.lib.eachDefaultSystem
}: let
allSystems = flake-utils.lib.allSystems;
in (
flake-utils.lib.eachSystem allSystems
(system: let
pkgs = nixpkgs.legacyPackages.${system};