From 50f3d32b49f25d3e93c551414c4d9022e9aacd51 Mon Sep 17 00:00:00 2001 From: Adrian Altner Date: Mon, 30 Mar 2026 14:46:16 +0200 Subject: [PATCH] Fix repository references in Codeberg mirror workflow --- .github/workflows/codeberg_mirror.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codeberg_mirror.yml b/.github/workflows/codeberg_mirror.yml index 16ebfcd..272eb4e 100644 --- a/.github/workflows/codeberg_mirror.yml +++ b/.github/workflows/codeberg_mirror.yml @@ -10,7 +10,7 @@ jobs: codeberg: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v4 with: fetch-depth: 0 @@ -31,11 +31,11 @@ jobs: - name: Verify SSH access run: | ssh -T git@codeberg.org || true - git ls-remote git@codeberg.org:adrian-altner/www.adrian-altner.com.git > /dev/null + git ls-remote git@codeberg.org:adrian-altner/adrian-altner.com.git > /dev/null - name: Mirror to Codeberg run: | - git remote add mirror git@codeberg.org:adrian-altner/www.adrian-altner.com.git + git remote add mirror git@codeberg.org:adrian-altner/adrian-altner.com.git # Remove previously mirrored remote-tracking refs (e.g. refs/remotes/origin/*). while IFS= read -r ref; do git push mirror ":${ref}"