From 4442890dae33c2d543937c4bd22ed54432596279 Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Fri, 28 Feb 2025 12:00:33 +1100 Subject: [PATCH] Unshallow the branch before pushing the mirror --- .github/workflows/pages-mirror.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/pages-mirror.yml b/.github/workflows/pages-mirror.yml index 7c0b1c1..33dfded 100644 --- a/.github/workflows/pages-mirror.yml +++ b/.github/workflows/pages-mirror.yml @@ -10,6 +10,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - name: Unshallow the actions repo + run: git fetch --unshallow origin ${{ github.ref_name }} - name: Making secret key file run: touch ~/mirror_secret - name: Protecting secret key file