diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 6004c36..06b5c26 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Install git - run: apk add --no-cache git + run: apt-get update && apt-get install -y git - name: Checkout code uses: actions/checkout@v4 @@ -45,7 +45,7 @@ jobs: needs: quality steps: - name: Install git - run: apk add --no-cache git + run: apt-get update && apt-get install -y git - name: Checkout code uses: actions/checkout@v4 @@ -73,7 +73,7 @@ jobs: if: github.ref == 'refs/heads/develop' steps: - name: Install git - run: apk add --no-cache git + run: apt-get update && apt-get install -y git - name: Checkout code uses: actions/checkout@v4 @@ -99,7 +99,7 @@ jobs: if: github.ref == 'refs/heads/main' steps: - name: Install git - run: apk add --no-cache git + run: apt-get update && apt-get install -y git - name: Checkout code uses: actions/checkout@v4