-
Notifications
You must be signed in to change notification settings - Fork 176
94 lines (85 loc) · 2.44 KB
/
deploy-docs.yaml
File metadata and controls
94 lines (85 loc) · 2.44 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
name: deploy-docs
on:
push:
branches:
- main
- galactic
paths:
- mkdocs.yaml
- "**/*.md"
- "**/*.svg"
- "**/*.png"
- "**/*.jpg"
tags:
- "[0-9]+.[0-9]+*"
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: false
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
reorder-versions-json:
needs:
- deploy-docs-pr
- deploy-docs-push
- deploy-docs-workflow-dispatch
if: |
always() &&
(
needs.deploy-docs-pr.result == 'success' ||
needs.deploy-docs-push.result == 'success' ||
needs.deploy-docs-workflow-dispatch.result == 'success'
)
uses: ./.github/workflows/reorder-versions.yaml
secrets:
token: ${{ secrets.GITHUB_TOKEN }}