diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index add35ef..7d21d42 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -73,7 +73,8 @@ jobs: id: nix-logic working-directory: ./repo run: | - nix-build scripts/nix-logic.nix | TMPDIR=../tmp xargs sh -c + mkdir -p ../tmp + nix-build scripts/nix-logic.nix | TMPDIR="$(realpath ../tmp)" xargs sh -c continue-on-error: true - name: "QMK: format" @@ -104,4 +105,4 @@ jobs: - name: Push to cache working-directory: ./repo run: | - nix-build scripts/nix-cache.nix | xargs -I{} sh -c '{}' kip93 + nix-build scripts/nix-cache.nix | xargs -I{} sh -c '{} kip93' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c2ce322..12064f5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -99,4 +99,4 @@ jobs: - name: Push to cache run: | - nix-build scripts/nix-cache.nix | xargs -I{} sh -c '{}' kip93 + nix-build scripts/nix-cache.nix | xargs -I{} sh -c '{} kip93' diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index f746173..e011ec2 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -55,4 +55,4 @@ jobs: - name: Push to cache run: | - nix-build scripts/nix-cache.nix | xargs -I{} sh -c '{}' kip93 + nix-build scripts/nix-cache.nix | xargs -I{} sh -c '{} kip93' diff --git a/scripts/nix-logic.nix b/scripts/nix-logic.nix index b7a660c..9f0c552 100644 --- a/scripts/nix-logic.nix +++ b/scripts/nix-logic.nix @@ -1,4 +1,4 @@ -{ pkgs ? import { } }: # TODO Uncomment some stuff +{ pkgs ? import { } }: # TODO Uncomment some stuff with pkgs; writeScript "nix-logic" '' #!${bash}/bin/bash set -eu