From 7683e735cb708d7576347e49a61e81b8b1f1d8d9 Mon Sep 17 00:00:00 2001 From: Chris Hofstaedtler Date: Tue, 10 Dec 2024 14:40:38 +0100 Subject: [PATCH] GHA: reindent --- .github/workflows/test-build.yml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index c33adf21..411d78e1 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -4,7 +4,7 @@ on: pull_request: push: schedule: - - cron: '30 3 * * 2' + - cron: "30 3 * * 2" concurrency: group: "${{ github.ref }}" @@ -16,25 +16,25 @@ jobs: fail-fast: false matrix: host_release: - - unstable - - trixie - - bookworm + - unstable + - trixie + - bookworm # We want a working shell, qemu, python and docker. Specific version should not matter (much). runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v4 - - run: ./test/gha-build-deb.sh - name: "Build .deb for ${{matrix.host_release}}" - env: - HOST_RELEASE: ${{matrix.host_release}} + - run: ./test/gha-build-deb.sh + name: "Build .deb for ${{matrix.host_release}}" + env: + HOST_RELEASE: ${{matrix.host_release}} - - name: Archive built .deb - uses: actions/upload-artifact@v4 - with: - name: deb-${{matrix.host_release}} - if-no-files-found: error - path: | - *.deb + - name: Archive built .deb + uses: actions/upload-artifact@v4 + with: + name: deb-${{matrix.host_release}} + if-no-files-found: error + path: | + *.deb