diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 9fad3af..6004c36 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -20,6 +20,9 @@ jobs: name: Code Quality runs-on: ubuntu-latest steps: + - name: Install git + run: apk add --no-cache git + - name: Checkout code uses: actions/checkout@v4 @@ -41,6 +44,9 @@ jobs: runs-on: ubuntu-latest needs: quality steps: + - name: Install git + run: apk add --no-cache git + - name: Checkout code uses: actions/checkout@v4 @@ -66,6 +72,9 @@ jobs: needs: [quality, test] if: github.ref == 'refs/heads/develop' steps: + - name: Install git + run: apk add --no-cache git + - name: Checkout code uses: actions/checkout@v4 @@ -89,6 +98,9 @@ jobs: needs: [quality, test] if: github.ref == 'refs/heads/main' steps: + - name: Install git + run: apk add --no-cache git + - name: Checkout code uses: actions/checkout@v4