Consistent use of symlink mode for publishDir (#605) #16
This file contains hidden or 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
# Build and push the Docker image for building the site (mkdocs material) | |
name: Build Docker [MkDocs] | |
on: | |
pull_request: | |
paths: | |
- ".github/mkdocs.Dockerfile" | |
- ".github/workflows/docker-mkdocs.yml" | |
- "requirements.txt" | |
push: | |
branches: [master] | |
jobs: | |
mkdocs_docker: | |
if: github.repository == 'nextflow-io/training' | |
name: Build + push mkdocs docker image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build / push latest image | |
uses: docker/build-push-action@v5 | |
with: | |
file: .github/mkdocs.Dockerfile | |
push: ${{ github.event_name == 'push' }} | |
tags: ghcr.io/nextflow-io/training-mkdocs:latest |