6 Commits

Author SHA1 Message Date
436f2d969e fix(ci): use markdown lint action
Some checks failed
Build / build-rocky-linux-8 (push) Has been cancelled
Build / build-arch-linux (push) Has been cancelled
Lint Markdown files / markdown-lint (push) Successful in 16s
2025-05-08 18:12:01 +02:00
91e93f7411 fix(ci): use markdown lint action 2025-05-08 18:11:55 +02:00
c06beae2c2 fix(ci): adapt markdownlint
Some checks failed
Build / build-rocky-linux-8 (push) Has been cancelled
Build / build-arch-linux (push) Has been cancelled
Lint Markdown files / markdown-lint (push) Successful in 11s
2025-05-08 18:06:02 +02:00
1d2a90f375 fix(ci): adapt markdownlint
Some checks failed
Build / build-arch-linux (push) Has been cancelled
Build / build-rocky-linux-8 (push) Has been cancelled
Lint Markdown files / markdown-lint (push) Successful in 10s
2025-05-08 18:03:54 +02:00
50b836e00c fix(ci): add markdownlint
Some checks failed
Build / build-rocky-linux-8 (push) Waiting to run
Lint Markdown files / markdown-lint (push) Successful in 10s
Build / build-arch-linux (push) Has been cancelled
2025-05-08 18:02:29 +02:00
c232c282db fix(ci): use container image tag from git tag
All checks were successful
Build / build-arch-linux (push) Successful in 12m1s
Build / build-rocky-linux-8 (push) Successful in 8m49s
Release / push-arch-linux (push) Successful in 18m43s
Release / push-rocky-linux-8 (push) Successful in 13m26s
Release / sync-to-hub-docker-io (push) Successful in 1m59s
2025-05-08 15:44:14 +02:00
2 changed files with 24 additions and 2 deletions

View File

@ -0,0 +1,22 @@
name: 'Lint Markdown files'
on:
pull_request:
types:
- opened
- reopened
- synchronize
push:
branches:
- master
workflow_dispatch: {}
jobs:
markdown-lint:
runs-on:
- ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
- uses: DavidAnson/markdownlint-cli2-action@v19.1.0
with:
globs: '**/*.md'

View File

@ -21,7 +21,7 @@ jobs:
- name: Build and push image
run: |
TAG=latest
TAG=$(echo ${{ github.ref_name }} | sed 's/v//gm')
docker buildx build \
--file Dockerfile.archlinux \
@ -44,7 +44,7 @@ jobs:
- name: Build and push image
run: |
TAG=latest
TAG=$(echo ${{ github.ref_name }} | sed 's/v//gm')
docker buildx build \
--file Dockerfile.rockylinux8 \