Skip to content

Commit

Permalink
Merge pull request #43 from cachix/debug-ci
Browse files Browse the repository at this point in the history
ci: fix push race condition
  • Loading branch information
sandydoo authored Oct 16, 2024
2 parents 04d5e45 + 1835186 commit e119873
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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'
Expand Down

0 comments on commit e119873

Please sign in to comment.