Skip to content

Commit 254e1c8

Browse files
ci: Migrate to Azure doc build
Migrated doc build, preview and publish to MS Azure. Signed-off-by: Arkadiusz Balys <arkadiusz.balys@nordicsemi.no>
1 parent cdbbbba commit 254e1c8

13 files changed

Lines changed: 250 additions & 697 deletions

File tree

.github/actions/cleanup-site/action.yml

Lines changed: 0 additions & 130 deletions
This file was deleted.

.github/actions/deploy-docs-preview/action.yml

Lines changed: 0 additions & 61 deletions
This file was deleted.

.github/actions/generate-docs-comment/action.yml

Lines changed: 0 additions & 103 deletions
This file was deleted.

.github/actions/get-changed-docs/action.yml

Lines changed: 0 additions & 53 deletions
This file was deleted.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Load doc add-on config
2+
description: Load DOC_ADDON_NAME from .github/doc-addon.env into GITHUB_ENV
3+
4+
runs:
5+
using: composite
6+
steps:
7+
- shell: bash
8+
run: |
9+
set -euo pipefail
10+
if [ ! -f .github/doc-addon.env ]; then
11+
echo "::error::Missing .github/doc-addon.env" >&2
12+
exit 1
13+
fi
14+
grep -E '^DOC_ADDON_NAME=' .github/doc-addon.env >> "$GITHUB_ENV"

0 commit comments

Comments
 (0)