From a8b26a8c2c04c18b127ce4924b3299baf0fde462 Mon Sep 17 00:00:00 2001 From: Cameron Smith Date: Fri, 22 Dec 2023 15:16:34 -0500 Subject: [PATCH] fix(CD): accept flake config Signed-off-by: Cameron Smith --- .github/workflows/CD.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CD.yaml b/.github/workflows/CD.yaml index 7ee2439..db27b59 100644 --- a/.github/workflows/CD.yaml +++ b/.github/workflows/CD.yaml @@ -15,8 +15,8 @@ jobs: - uses: actions/checkout@v4 - uses: DeterminateSystems/nix-installer-action@v9 - uses: DeterminateSystems/magic-nix-cache-action@v2 - - run: nix flake check - - run: nix build . + - run: nix flake check --accept-flake-config + - run: nix build . --accept-flake-config # release: # runs-on: ubuntu-latest # needs: check @@ -65,7 +65,7 @@ jobs: extra-conf: | extra-platforms = aarch64-linux - uses: DeterminateSystems/magic-nix-cache-action@v2 - - run: nix run .#devcontainerManifest --impure + - run: nix run .#devcontainerManifest --impure --accept-flake-config env: # VERSION: ${{ needs.release.outputs.version }} VERSION: test01