From 1b749f83680a1a6f2877668cbf9874c33f0c8b31 Mon Sep 17 00:00:00 2001 From: Andrei Jiroh Halili Date: Mon, 13 Jan 2025 01:39:47 +0800 Subject: [PATCH] Install git-filter-repo via wget method --- .github/workflows/repo-sync.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/repo-sync.yaml b/.github/workflows/repo-sync.yaml index e499102..52151ef 100644 --- a/.github/workflows/repo-sync.yaml +++ b/.github/workflows/repo-sync.yaml @@ -26,7 +26,8 @@ jobs: run: | git config user.name RecapTimeBot git config user.email service-accounts+github@crew.recaptime.dev - sudo apt update && sudo apt install git-filter-repo -y + sudo wget https://raw.githubusercontent.com/newren/git-filter-repo/main/git-filter-repo -O /usr/bin/git-filter-repo + sudo chmod +x /usr/bin/git-filter-repo - name: Dry-run run: | echo ::group::Running a dry-run of git filter-repo