chore: Workflow bugfixing

This commit is contained in:
Dennis Ploeger
2021-10-27 18:31:16 +02:00
parent e3ddc13326
commit 3910a3065e

View File

@@ -29,10 +29,22 @@ jobs:
DIR: "${{matrix.parts.dir}}" DIR: "${{matrix.parts.dir}}"
REPO: "${{matrix.parts.repo}}" REPO: "${{matrix.parts.repo}}"
steps: 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" - name: "Checkout"
uses: "actions/checkout@v2" uses: "actions/checkout@v2"
with: with:
repository: "godot-escoria/escoria-demo-game"
ref: "develop"
path: "demo-game" path: "demo-game"
token: "${{ secrets.DEPLOYMENT_TOKEN }}"
fetch-depth: 0
- name: "Filtering out ${{ env.DIR }}" - name: "Filtering out ${{ env.DIR }}"
run: | run: |
curl -s https://raw.githubusercontent.com/newren/git-filter-repo/main/git-filter-repo -o git-filter-repo curl -s https://raw.githubusercontent.com/newren/git-filter-repo/main/git-filter-repo -o git-filter-repo