-
Notifications
You must be signed in to change notification settings - Fork 176
76 lines (68 loc) · 2.03 KB
/
deploy-docs.yaml
File metadata and controls
76 lines (68 loc) · 2.03 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
name: deploy-docs
on:
push:
branches:
- main
- galactic
paths:
- mkdocs.yaml
- "**/*.md"
- "**/*.svg"
- "**/*.png"
- "**/*.jpg"
pull_request_target:
types:
- opened
- synchronize
- labeled
workflow_dispatch:
jobs:
require-label:
if: ${{ github.event_name == 'pull_request_target' }}
uses: autowarefoundation/autoware-github-actions/.github/workflows/require-label.yaml@v1
with:
label: tag:deploy-docs
deploy-docs-pr:
if: ${{ github.event_name == 'pull_request_target' && needs.require-label.outputs.result == 'true' }}
needs: require-label
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}
- name: Deploy docs
uses: autowarefoundation/autoware-github-actions/deploy-docs@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
latest: false
mkdocs-requirements-txt: mkdocs-requirements.txt
deploy-docs-push:
if: ${{ github.event_name == 'push' }}
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Deploy docs
uses: autowarefoundation/autoware-github-actions/deploy-docs@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
latest: ${{ github.ref_name == github.event.repository.default_branch }}
mkdocs-requirements-txt: mkdocs-requirements.txt
deploy-docs-workflow-dispatch:
if: ${{ github.event_name == 'workflow_dispatch' }}
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Deploy docs
uses: autowarefoundation/autoware-github-actions/deploy-docs@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
latest: false
mkdocs-requirements-txt: mkdocs-requirements.txt