From 3910a3065e4eea0035258bda88e5e32676c231ae Mon Sep 17 00:00:00 2001 From: Dennis Ploeger Date: Wed, 27 Oct 2021 18:31:16 +0200 Subject: [PATCH] chore: Workflow bugfixing --- .github/workflows/fanout.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/fanout.yml b/.github/workflows/fanout.yml index a57f92f3..70fbfe90 100644 --- a/.github/workflows/fanout.yml +++ b/.github/workflows/fanout.yml @@ -29,10 +29,22 @@ jobs: DIR: "${{matrix.parts.dir}}" REPO: "${{matrix.parts.repo}}" steps: + - name: "Configure git" + run: | + if ! git --version | grep 2.33 >/dev/null + then + sudo add-apt-repository ppa:git-core/ppa -y + sudo apt-get update + sudo apt-get install git -y + fi - name: "Checkout" uses: "actions/checkout@v2" with: + repository: "godot-escoria/escoria-demo-game" + ref: "develop" path: "demo-game" + token: "${{ secrets.DEPLOYMENT_TOKEN }}" + fetch-depth: 0 - name: "Filtering out ${{ env.DIR }}" run: | curl -s https://raw.githubusercontent.com/newren/git-filter-repo/main/git-filter-repo -o git-filter-repo