mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-12 22:50:17 +01:00
65cb76028f
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
46 lines
1.1 KiB
YAML
46 lines
1.1 KiB
YAML
---
|
|
# yamllint disable rule:line-length
|
|
name: Test converting README.md to README.html
|
|
on: # yamllint disable-line rule:truthy
|
|
pull_request:
|
|
merge_group:
|
|
branches:
|
|
- main
|
|
types:
|
|
- checks_requested
|
|
push:
|
|
branches:
|
|
- main
|
|
permissions:
|
|
contents: read
|
|
jobs:
|
|
test_converting_readme:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- name: Update pip, git
|
|
run: |
|
|
set -euxo pipefail
|
|
sudo apt update
|
|
sudo apt install -y git
|
|
|
|
- name: Check out code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Remove badges from README.md prior to converting to HTML
|
|
run: sed -i '1,8 {/^\[\!\[.*/d}' README.md
|
|
|
|
- name: Convert README.md to HTML
|
|
uses: docker://pandoc/core:latest
|
|
with:
|
|
args: >-
|
|
--from gfm --to html5 --toc --shift-heading-level-by=-1
|
|
--template .pandoc_template.html5
|
|
--output README.html README.md
|
|
|
|
- name: Upload README.html as an artifact
|
|
uses: actions/upload-artifact@master
|
|
with:
|
|
name: README.html
|
|
path: README.html
|