From ae76b04df9dbc96fdf291c77a8716dccf6555a9f Mon Sep 17 00:00:00 2001 From: silver Date: Sat, 28 Sep 2024 13:23:52 +0000 Subject: [PATCH] test: see if using an action to isntall nix will work Signed-off-by: silver --- .forgejo/workflows/push.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/push.yaml b/.forgejo/workflows/push.yaml index 8b879c5..b824a27 100644 --- a/.forgejo/workflows/push.yaml +++ b/.forgejo/workflows/push.yaml @@ -9,9 +9,12 @@ on: jobs: build: - # build it using teh base nixos system, helps with caching - runs-on: nix + runs-on: docker steps: + - uses: https://github.com/cachix/install-nix-action@v29 + with: + nix_path: nixpkgs=channel:nixos-unstable + - run: nix --version # get the repo first - uses: https://code.forgejo.org/actions/checkout@v4 # Make sure all files are pulled down