diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index 18e4d74..d0b5eaf 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -26,9 +26,12 @@ jobs: build-backend: runs-on: ubuntu-latest container: - image: docker:27-git + image: docker:27 options: --privileged steps: + - name: Install git + run: apk add --no-cache git + - name: Checkout code uses: https://code.forgejo.org/actions/checkout@v4 @@ -56,9 +59,12 @@ jobs: build-frontend: runs-on: ubuntu-latest container: - image: docker:27-git + image: docker:27 options: --privileged steps: + - name: Install git + run: apk add --no-cache git + - name: Checkout code uses: https://code.forgejo.org/actions/checkout@v4 @@ -86,9 +92,12 @@ jobs: build-chat: runs-on: ubuntu-latest container: - image: docker:27-git + image: docker:27 options: --privileged steps: + - name: Install git + run: apk add --no-cache git + - name: Checkout code uses: https://code.forgejo.org/actions/checkout@v4 @@ -116,9 +125,12 @@ jobs: build-openresty: runs-on: ubuntu-latest container: - image: docker:27-git + image: docker:27 options: --privileged steps: + - name: Install git + run: apk add --no-cache git + - name: Checkout code uses: https://code.forgejo.org/actions/checkout@v4