From d439e37ddf0465f3ac5dfae209f3230b55173108 Mon Sep 17 00:00:00 2001 From: Tom Foster Date: Tue, 23 Apr 2024 10:12:28 +0100 Subject: [PATCH] Ensure .direnvrc exists --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c6a020d7..8a7e1203 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -63,7 +63,8 @@ jobs: - name: Package build environment for Artifact run: | - sudo tar -czf environment.tar.gz /nix/store ~/.cargo /etc/nix/nix.conf + touch $HOME/.direnvrc + sudo tar -czf environment.tar.gz /nix/store ~/.cargo /etc/nix/nix.conf $HOME/.direnvrc - name: Store build environment uses: actions/upload-artifact@v4