From 1835186c6f461b84101349216ab101f00d8faf97 Mon Sep 17 00:00:00 2001 From: Sander Date: Wed, 16 Oct 2024 13:23:43 +0000 Subject: [PATCH] ci: fix push issues --- .github/workflows/deploy.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index dc93f9e..4d336b1 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -16,9 +16,9 @@ jobs: strategy: matrix: os: - - [self-hosted, Linux, X86] + - [ubuntu-latest] - [macos-latest] - - [self-hosted, Linux, ARM64] + - [self-hosted, linux, ARM64] runs-on: ${{ matrix.os }} outputs: x86_64-linux: ${{ steps.agent.outputs.x86_64-linux }} @@ -42,6 +42,8 @@ jobs: out_path=$(nix build -L --print-out-paths --accept-flake-config) echo "Built $out_path" echo "$system=$out_path" >> $GITHUB_OUTPUT + # Wait for all paths to flush to daemon. TODO: fix upstream. + sleep 3 deploy: if: github.ref == 'refs/heads/main'