Skip to content

Commit

Permalink
Remove conditional check for repository owner in man-page-gen job
Browse files Browse the repository at this point in the history
  • Loading branch information
Tearran committed Jan 9, 2024
1 parent 36670f9 commit 1595583
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 99 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/man-page-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ jobs:
man-page-gen:
name: Generate Man Pages
runs-on: ubuntu-latest
if: ${{ github.repository_owner == 'Tearran' }}
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -20,13 +19,8 @@ jobs:
- name: Convert Markdown to Man Pages
run: |
for file in share/doc/armbian-configng/*.1.md; do
pandoc -s -t man $file -o ${file%.1.md}.1
done
- name: Compress Man Pages
run: |
for file in share/doc/armbian-configng/*.1; do
gzip $file
pandoc -s -t man $file -o ${file%.md}
gzip ${file%.md}
done
- name: Move Man Pages
Expand Down
91 changes: 0 additions & 91 deletions share/man/man1/armbian-configng.md

This file was deleted.

0 comments on commit 1595583

Please sign in to comment.