-
Notifications
You must be signed in to change notification settings - Fork 97
57 lines (53 loc) · 1.55 KB
/
docs-build-push.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: Build and deploy docs
on:
workflow_dispatch:
inputs:
environment:
description: 'Environment to deploy to'
required: true
default: 'preview'
type: choice
options:
- preview
- dev
- staging
- prod
pull_request:
branches:
- "*"
paths:
- "site/**"
concurrency:
group: ${{ github.ref_name }}-docs-push
cancel-in-progress: true
permissions:
contents: read
jobs:
vars:
runs-on: ubuntu-24.04
outputs:
azure_creds: ${{ steps.vars.outputs.defined }}
steps:
- name: Check if variable is set
id: vars
env:
AZURE_CREDENTIALS: ${{ secrets.AZURE_CREDENTIALS_DOCS }}
if: "${{ env.AZURE_CREDENTIALS != '' }}"
run: echo "defined=true" >> $GITHUB_OUTPUT
call-docs-build-push:
needs: [vars]
if: ${{ github.event.repository.fork == false && needs.vars.outputs.azure_creds == 'true' }}
uses: nginxinc/docs-actions/.github/workflows/docs-build-push.yml@9c59fab05a8131f4d691ba6ea2b6a119f3ef832a # v1.0.7
permissions:
pull-requests: write # needed to write preview url comment to PR
contents: read
with:
production_url_path: "/nginx-gateway-fabric"
preview_url_path: "/previews/nginx-gateway-fabric"
docs_source_path: "public/nginx-gateway-fabric"
docs_build_path: "./site"
doc_type: "hugo"
environment: ${{ inputs.environment }}
secrets:
AZURE_CREDENTIALS: ${{ secrets.AZURE_CREDENTIALS_DOCS }}
AZURE_KEY_VAULT: ${{ secrets.AZURE_KEY_VAULT_DOCS }}