name: Build bootstrap packages and push to cachix on: pull_request: push: schedule: - cron: 0 0 * * 1 jobs: cachix: runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v4 - name: Install nix uses: cachix/install-nix-action@v25 - name: Setup cachix uses: cachix/cachix-action@v14 with: name: nix-on-droid signingKey: "${{ secrets.CACHIX_SIGNING_KEY }}" - name: Build bootstrap zip run: | nix \ --log-format bar-with-logs \ --option keep-going true \ --show-trace \ build .#bootstrapZip-aarch64 .#bootstrapZip-x86_64 \ --impure