Build documentation #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build documentation | |
on: workflow_dispatch | |
jobs: | |
build-docs: | |
runs-on: ubuntu-latest | |
env: | |
DOTNET_NOLOGO: true | |
steps: | |
- name: Check out nodatime.org | |
uses: actions/checkout@v4 | |
with: | |
path: nodatime.org | |
- name: Checkout nodatime | |
uses: actions/checkout@v4 | |
with: | |
path: nodatime | |
- name: Checkout nodatime.serialization | |
uses: actions/checkout@v4 | |
with: | |
path: nodatime.serialization | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Docker build | |
uses: docker/build-push-action@v5 | |
with: | |
push: false | |
file: nodatime.org/build/Dockerfile |