This commit is contained in:
Fang-Pen Lin
2025-11-07 18:16:38 -08:00
parent 4a9f61bed6
commit 550e5158cc

View File

@@ -27,8 +27,13 @@ jobs:
- name: ☁️ Checkout source - name: ☁️ Checkout source
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
fetch-tags: true sparse-checkout: |
fetch-depth: 0 .github/resources
sparse-checkout-cone-mode: false
# XXX:
- name: Copy .env.bdd to .env
run: cp .github/resources/.env.bdd .env
working-directory: backend
- name: Install uv - name: Install uv
uses: astral-sh/setup-uv@v5 uses: astral-sh/setup-uv@v5
- name: Install Python - name: Install Python
@@ -47,9 +52,7 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: npm install run: npm install
working-directory: backend working-directory: backend
- name: Copy .env.bdd to .env
run: cp .github/resources/.env.bdd .env
working-directory: backend
- name: Build Infisical backend Docker image with caching - name: Build Infisical backend Docker image with caching
uses: docker/bake-action@v5 uses: docker/bake-action@v5
with: with: