Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add asciidoctor check #840

Open
wants to merge 2 commits into
base: mainline
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/asciidoctor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Asciidoctor Validation

on:
pull_request:
paths:
- '**.adoc'

jobs:
validate-asciidoc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
bundler-cache: true

- name: Install Asciidoctor
run: gem install asciidoctor

- name: Validate Asciidoctor files
run: asciidoctor latest/ug/book.adoc -v -w -o /dev/null
2 changes: 2 additions & 0 deletions latest/ug/what-is/what-is-eks.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ include::../attributes.txt[]
Learn to manage containerized applications with Amazon EKS
--

//force github action

Amazon Elastic Kubernetes Service (Amazon EKS) is a managed Kubernetes service that eliminates the need to operate and maintain the availability and scalability of Kubernetes clusters in Amazon Web Services ({aws}) and in your own data centers. https://kubernetes.io/docs/concepts/overview/[Kubernetes] is an open source system that automates the management, scaling, and deployment of containerized applications. To get started, see the <<quickstart>> page in the Amazon EKS User Guide.

[[eks-features,eks-features.title]]
Expand Down
Loading