Fix workflow indentation

This commit is contained in:
Matthieu Gautier 2024-04-15 15:08:32 +02:00
parent dd3fd1ff7a
commit 5489769907
1 changed files with 9 additions and 5 deletions

View File

@ -40,20 +40,24 @@ jobs:
env: env:
SSH_KEY: ${{ runner.temp }}/id_rsa SSH_KEY: ${{ runner.temp }}/id_rsa
- name: Ensure base deps - name: Ensure base deps
run: python .github\\scripts\\ensure_base_deps.py run: |
python .github\\scripts\\ensure_base_deps.py
env: env:
SSH_KEY: ${{ runner.temp }}/id_rsa SSH_KEY: ${{ runner.temp }}/id_rsa
- name: Compile all deps - name: Compile all deps
run: python .github\\scripts\\compile_all_deps.py run: |
python .github\\scripts\\compile_all_deps.py
env: env:
SSH_KEY: ${{ runner.temp }}/id_rsa SSH_KEY: ${{ runner.temp }}/id_rsa
- name: Build projects - name: Build projects
run: python .github\\scripts\\build_projects.py run: |
python .github\\scripts\\build_projects.py
env: env:
SSH_KEY: ${{ runner.temp }}/id_rsa SSH_KEY: ${{ runner.temp }}/id_rsa
- name: Upload failure logs - name: Upload failure logs
if: failure() if: failure()
run: python .github\\scripts\\upload_failure_logs.py run: |
python .github\\scripts\\upload_failure_logs.py
Linux: Linux:
strategy: strategy:
@ -128,7 +132,7 @@ jobs:
kiwix-build/.github/scripts/ensure_base_deps.py kiwix-build/.github/scripts/ensure_base_deps.py
env: env:
COMPILE_CONFIG: ${{matrix.config}} COMPILE_CONFIG: ${{matrix.config}}
- name: Compile all deps - name: Compile all deps
shell: bash shell: bash
run: | run: |
cd $HOME cd $HOME