Fix: Replace actions/checkout with manual git clone (Node.js not available in docker:latest)

This commit is contained in:
masoud
2025-12-06 16:48:12 +00:00
parent ee6776f29e
commit b2b32cebae

View File

@@ -16,8 +16,14 @@ jobs:
image: docker:latest image: docker:latest
options: --privileged options: --privileged
steps: steps:
- name: Install git
run: |
apk add --no-cache git
- name: Checkout code - name: Checkout code
uses: actions/checkout@v4 run: |
git clone --depth 1 --branch kub-stage http://194.5.195.53:30080/admin/BackOffice.BFF.git .
git log -1 --format="%H %s"
- name: Start Docker daemon - name: Start Docker daemon
run: | run: |