-
Notifications
You must be signed in to change notification settings - Fork 6
57 lines (49 loc) · 2.04 KB
/
manual.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
# /********************************************************************************
# Copyright (c) 2022 Robert Bosch GmbH and Microsoft Corporation
#
# This program and the accompanying materials are made available under the
# terms of the Apache License, Version 2.0 which is available at
# https://www.apache.org/licenses/LICENSE-2.0.
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
# SPDX-License-Identifier: Apache-2.0
# ********************************************************************************/
name: Preview
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
name: Preview documentation on https://eclipse-velocitas.github.io/velocitas-docs/
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Hugo
uses: peaceiris/[email protected]
with:
hugo-version: "0.110.0"
extended: true
- name: Build
run: |
export NODE_PATH=$NODE_PATH:`npm root -g`
npm i -g postcss postcss-cli autoprefixer
echo "Build documentation for GitHub Pages"
hugo --baseURL /velocitas-docs
- name: Fixes
run: |
for f in public/docs/index.html public/docs/_print/index.html; do sed -i 's,/docs/contributing/contribution,/velocitas-docs/docs/contributing/contribution,g' $f; done
- name: Check for broken links
continue-on-error: true
run: |
echo $(docker run -v $(pwd)/public:/public -v $(pwd)/.htmltest.yml:/.htmltest.yml --rm wjdp/htmltest -s /public -c /.htmltest.yml) >> $GITHUB_STEP_SUMMARY
- name: Publish to docs branch
uses: peaceiris/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
publish_branch: docs