mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2026-06-24 11:04:18 +00:00
cce4b00176
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 6 to 7. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v6...v7) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
36 lines
787 B
YAML
36 lines
787 B
YAML
name: Verify Docs
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'docs/**'
|
|
- 'zensical.toml'
|
|
- '.github/workflows/verify-docs.yml'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
verify:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Build docs image
|
|
uses: docker/build-push-action@v7
|
|
with:
|
|
context: .
|
|
file: docs/Dockerfile
|
|
load: true
|
|
tags: docs-verifier:latest
|
|
cache-from: type=gha
|
|
cache-to: type=gha,mode=max
|
|
|
|
- name: Verify rendering
|
|
run: |
|
|
docker run --rm \
|
|
-v ${{ github.workspace }}:/docs \
|
|
docs-verifier:latest build --strict
|