From d9c4828b351a1c56c1ee6782a48cbec04338374f Mon Sep 17 00:00:00 2001 From: firewave Date: Tue, 10 Oct 2023 22:39:18 +0200 Subject: [PATCH] buildman.yml: fixed syntax error in `manpage` job --- .github/workflows/buildman.yml | 36 +++++++++++++++++----------------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/buildman.yml b/.github/workflows/buildman.yml index fde5cba0020..5f578660ef4 100644 --- a/.github/workflows/buildman.yml +++ b/.github/workflows/buildman.yml @@ -39,21 +39,21 @@ jobs: path: output manpage: - - runs-on: ubuntu-22.04 - steps: - - uses: actions/checkout@v3 - - - name: Install missing software on ubuntu - if: contains(matrix.image, 'ubuntu') - run: | - apt-get update - apt-get install -y xsltproc docbook-xsl - - - name: build manpage - run: | - make man - - - uses: actions/upload-artifact@v3 - with: - name: cppcheck.1 - path: cppcheck.1 + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v3 + + - name: Install missing software on ubuntu + if: contains(matrix.image, 'ubuntu') + run: | + apt-get update + apt-get install -y xsltproc docbook-xsl + + - name: build manpage + run: | + make man + + - uses: actions/upload-artifact@v3 + with: + name: cppcheck.1 + path: cppcheck.1