diff --git a/.github/workflows/flake-health-checks.yml b/.github/workflows/flake-health-checks.yml index a80e3ba..4035df0 100644 --- a/.github/workflows/flake-health-checks.yml +++ b/.github/workflows/flake-health-checks.yml @@ -43,4 +43,6 @@ jobs: - uses: actions/checkout@v4 - name: Build all outputs run: nix run git+https://nayeonie.com/ahuston-0/flake-update-diff -- --build . - - run: nix ./utils/attic-push.bash + - name: Push to Attic + run: nix ./utils/attic-push.bash + continue-on-error: true diff --git a/.github/workflows/flake-update.yml b/.github/workflows/flake-update.yml index cb286a5..d5d6250 100644 --- a/.github/workflows/flake-update.yml +++ b/.github/workflows/flake-update.yml @@ -27,6 +27,7 @@ jobs: endpoint: ${{ secrets.ATTIC_ENDPOINT }} cache: ${{ secrets.ATTIC_CACHE }} token: ${{ secrets.ATTIC_TOKEN }} + skip-push: "true" - name: Calculate pre-drv run: nix run git+https://nayeonie.com/ahuston-0/flake-update-diff -- --build . # - name: Pull latest docker images @@ -138,6 +139,9 @@ jobs: branch: update-flake-lock delete-branch: true + - name: Push to Attic + run: nix ./utils/attic-push.bash + continue-on-error: true - name: Print PR number run: | echo "Pull request number is ${{ steps.create-pull-request.outputs.pull-request-number }}." diff --git a/.github/workflows/nix-fmt.yml b/.github/workflows/nix-fmt.yml index e2c2e3e..189148d 100644 --- a/.github/workflows/nix-fmt.yml +++ b/.github/workflows/nix-fmt.yml @@ -18,5 +18,9 @@ jobs: endpoint: ${{ secrets.ATTIC_ENDPOINT }} cache: ${{ secrets.ATTIC_CACHE }} token: ${{ secrets.ATTIC_TOKEN }} + skip-push: "true" - uses: actions/checkout@v4 - run: nix fmt -- --check . + - name: Push to Attic + run: nix ./utils/attic-push.bash + continue-on-error: true