Skip to content

Commit

Permalink
buildman.yml: fixed syntax error in manpage job
Browse files Browse the repository at this point in the history
  • Loading branch information
firewave committed Oct 10, 2023
1 parent 7393083 commit d9c4828
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/buildman.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit d9c4828

Please sign in to comment.