build(deps): bump actions/setup-python from 4.6.1 to 4.7.0 #1545
Workflow file for this run
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: CI | |
on: | |
push: | |
paths: | |
- .github/workflows/main.yml | |
- mkdocs.yml | |
- 'docs/**' | |
- 'custom_theme_overrides/**' | |
- pyproject.toml | |
- poetry.lock | |
jobs: | |
build_and_deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Python | |
uses: actions/[email protected] | |
with: | |
python-version: 3.11 | |
architecture: x64 | |
- name: Setup Poetry | |
uses: Gr1N/setup-poetry@v8 | |
- name: Install all dependencies | |
run: | | |
poetry install \ | |
--no-dev \ | |
--no-interaction \ | |
--ansi \ | |
--remove-untracked | |
- name: Build documentation | |
run: | | |
poetry run mkdocs build --strict | |
# Synchronize doctree with Google Cloud Bucket | |
- if: github.ref == 'refs/heads/main' | |
uses: actions-hub/[email protected] | |
env: | |
PROJECT_ID: aura-prod-d7e3 | |
APPLICATION_CREDENTIALS: ${{ secrets.GCP_SERVICEACCOUNT_KEY_FOR_DOC_NAIS_IO_BUCKET }} | |
with: | |
args: -m rsync -r -c -d site/ gs://doc.nais.io | |
cli: gsutil | |
# Cache buster | |
- if: github.ref == 'refs/heads/main' | |
uses: actions-hub/[email protected] | |
env: | |
PROJECT_ID: aura-prod-d7e3 | |
APPLICATION_CREDENTIALS: ${{ secrets.GCP_SERVICEACCOUNT_KEY_FOR_DOC_NAIS_IO_BUCKET }} | |
with: | |
args: -m setmeta -r -h 'Cache-Control:public, max-age=180' 'gs://doc.nais.io/*' | |
cli: gsutil |