build-deb.yml: Change indentation from 4 to 2 spaces
Even if most of the project follows the 4-space convention, 2 spaces seems more comfortable for YAML files, specially for workflows where deeper levels of indentations are common.
This commit is contained in:
parent
e9bd5b2ff8
commit
3567f775d2
1 changed files with 14 additions and 14 deletions
|
@ -1,16 +1,16 @@
|
|||
on: [pull_request]
|
||||
jobs:
|
||||
build:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: forge.a-lec.org/speed-dreams/debian-sd:stable
|
||||
steps:
|
||||
- run: |
|
||||
git clone \
|
||||
-b ${{ env.GITHUB_HEAD_REF }} \
|
||||
--depth 1 \
|
||||
${{ env.GITHUB_SERVER_URL }}/${{ env.GITHUB_REPOSITORY }}.git \
|
||||
src
|
||||
cd src/
|
||||
cmake -B build -DSD_ASSUME_DATADIR=1
|
||||
cmake --build build -j$(nproc --all)
|
||||
build:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: forge.a-lec.org/speed-dreams/debian-sd:stable
|
||||
steps:
|
||||
- run: |
|
||||
git clone \
|
||||
-b ${{ env.GITHUB_HEAD_REF }} \
|
||||
--depth 1 \
|
||||
${{ env.GITHUB_SERVER_URL }}/${{ env.GITHUB_REPOSITORY }}.git \
|
||||
src
|
||||
cd src/
|
||||
cmake -B build -DSD_ASSUME_DATADIR=1
|
||||
cmake --build build -j$(nproc --all)
|
||||
|
|
Loading…
Reference in a new issue