Skip to content

Add required label for unleash apitoken #1534

Add required label for unleash apitoken

Add required label for unleash apitoken #1534

Workflow file for this run

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/setup-python@v4.6.1
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/gcloud@437.0.1
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/gcloud@437.0.1
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