From eb034cb8b3bb03487a0cc107a406040141358c6c Mon Sep 17 00:00:00 2001 From: nelind Date: Sun, 17 May 2026 16:36:07 +0200 Subject: [PATCH] fix(ci): dont pass cachix cache name as a secret so it doesnt get redacted from CI logs --- .tangled/workflows/publish-cachix-aarch64.yml | 2 +- .tangled/workflows/publish-cachix-x86_64.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.tangled/workflows/publish-cachix-aarch64.yml b/.tangled/workflows/publish-cachix-aarch64.yml index cc991a9..fc4b47a 100644 --- a/.tangled/workflows/publish-cachix-aarch64.yml +++ b/.tangled/workflows/publish-cachix-aarch64.yml @@ -18,4 +18,4 @@ steps: - name: Build and push aarch64 command: | SUBS="--option extra-substituters https://tranquil.cachix.org --option extra-trusted-public-keys tranquil.cachix.org-1:PoO+mGL6a6LcJiPakMDHN4E218/ei/7v2sxeDtNkSRg=" - nix-store -qR --include-outputs $(nix-store -qd $(nix build .#packages.x86_64-linux.tranquil-pds-aarch64 $SUBS --print-out-paths --no-link)) | grep -v '\.drv$' | cachix push "$CACHIX_CACHE_NAME" + nix-store -qR --include-outputs $(nix-store -qd $(nix build .#packages.x86_64-linux.tranquil-pds-aarch64 $SUBS --print-out-paths --no-link)) | grep -v '\.drv$' | cachix push tranquil diff --git a/.tangled/workflows/publish-cachix-x86_64.yml b/.tangled/workflows/publish-cachix-x86_64.yml index a7219a6..1c8b48f 100644 --- a/.tangled/workflows/publish-cachix-x86_64.yml +++ b/.tangled/workflows/publish-cachix-x86_64.yml @@ -18,11 +18,11 @@ steps: - name: Build and push x86_64 command: | SUBS="--option extra-substituters https://tranquil.cachix.org --option extra-trusted-public-keys tranquil.cachix.org-1:PoO+mGL6a6LcJiPakMDHN4E218/ei/7v2sxeDtNkSRg=" - nix-store -qR --include-outputs $(nix-store -qd $(nix build .#packages.x86_64-linux.tranquil-pds $SUBS --print-out-paths --no-link)) | grep -v '\.drv$' | cachix push "$CACHIX_CACHE_NAME" - nix-store -qR --include-outputs $(nix-store -qd $(nix build .#packages.x86_64-linux.tranquil-frontend $SUBS --print-out-paths --no-link)) | grep -v '\.drv$' | cachix push "$CACHIX_CACHE_NAME" + nix-store -qR --include-outputs $(nix-store -qd $(nix build .#packages.x86_64-linux.tranquil-pds $SUBS --print-out-paths --no-link)) | grep -v '\.drv$' | cachix push tranquil + nix-store -qR --include-outputs $(nix-store -qd $(nix build .#packages.x86_64-linux.tranquil-frontend $SUBS --print-out-paths --no-link)) | grep -v '\.drv$' | cachix push tranquil - name: Build and push devShell command: | SUBS="--option extra-substituters https://tranquil.cachix.org --option extra-trusted-public-keys tranquil.cachix.org-1:PoO+mGL6a6LcJiPakMDHN4E218/ei/7v2sxeDtNkSRg=" nix develop $SUBS --profile dev-profile -c true - cachix push "$CACHIX_CACHE_NAME" dev-profile + cachix push tranquil dev-profile