chore(deps): bump dawidd6/action-download-artifact from 10 to 11 #1629
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
# This workflow checks the documentation | |
name: TechDocs | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
publish-docs: | |
name: Build and publish docs | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
strategy: | |
matrix: | |
site: | |
- directory: ./ | |
container: | |
image: spotify/techdocs:v1.2.6 | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- name: Check mkdocs | |
run: mkdocs --verbose build --clean | |
working-directory: ${{ matrix.site.directory }} |