-
Notifications
You must be signed in to change notification settings - Fork 250
188 lines (166 loc) · 6.02 KB
/
Copy pathdocs-pipeline.yml
File metadata and controls
188 lines (166 loc) · 6.02 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
name: Deploy Documentation
on:
push:
branches:
- master
- main
paths:
- 'docs/**'
- '.github/workflows/docs-pipeline.yml'
tags:
- 'v*' # Build docs for version tags
pull_request:
paths:
- 'docs/**'
- '.github/workflows/docs-pipeline.yml'
workflow_dispatch:
inputs:
version:
description: 'Version to build (e.g., v1.11, main)'
required: false
default: 'main'
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages-${{ github.ref }}"
cancel-in-progress: false
jobs:
# Build job
build:
runs-on: ubuntu-22.04
strategy:
matrix:
include:
- version: main
path: ''
# Add more versions as needed
# - version: v1.11
# path: 'v1.11'
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all history for git metadata
- name: Checkout version tag
if: startsWith(github.ref, 'refs/tags/')
run: |
VERSION_TAG=${GITHUB_REF#refs/tags/}
git checkout tags/$VERSION_TAG -b docs-$VERSION_TAG
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Extract version information
id: version
run: |
# Get version from git tag, branch, or VERSION.in file
if [[ "$GITHUB_REF" == refs/tags/* ]]; then
VERSION=${GITHUB_REF#refs/tags/}
elif [[ "$GITHUB_REF" == refs/heads/* ]]; then
BRANCH=${GITHUB_REF#refs/heads/}
if [[ "$BRANCH" == "master" || "$BRANCH" == "main" ]]; then
VERSION="main"
else
VERSION=$BRANCH
fi
else
VERSION="main"
fi
# Get OpenCue version from VERSION.in
OPENCUE_VERSION=$(cat VERSION.in | tr -d '\n')
# Get last commit date
LAST_COMMIT=$(git log -1 --format="%ad" --date=format:"%Y-%m-%d")
echo "version=$VERSION" >> $GITHUB_OUTPUT
echo "opencue_version=$OPENCUE_VERSION" >> $GITHUB_OUTPUT
echo "last_commit=$LAST_COMMIT" >> $GITHUB_OUTPUT
echo "build_date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
- name: Setup Pages
id: pages
uses: actions/configure-pages@v4
if: github.event_name != 'pull_request'
- name: Create _data directory and version file
working-directory: ./docs
run: |
mkdir -p _data
cat > _data/version.yml <<EOF
version: "${{ steps.version.outputs.version }}"
opencue_version: "${{ steps.version.outputs.opencue_version }}"
build_date: "${{ steps.version.outputs.build_date }}"
last_commit: "${{ steps.version.outputs.last_commit }}"
git_hash: "$(git rev-parse --short HEAD)"
EOF
- name: Build Docker image
working-directory: ./docs
run: |
docker build -t opencue-docs:ci .
- name: Build with Jekyll using Docker
working-directory: ./docs
run: |
# Set version in config
export JEKYLL_VERSION="${{ steps.version.outputs.version }}"
export JEKYLL_BUILD_DATE="${{ steps.version.outputs.build_date }}"
# Add version to Jekyll config dynamically
echo "" >> _config.yml
echo "# Auto-generated version info" >> _config.yml
echo "version: ${{ steps.version.outputs.version }}" >> _config.yml
echo "build_date: ${{ steps.version.outputs.build_date }}" >> _config.yml
echo "opencue_version: ${{ steps.version.outputs.opencue_version }}" >> _config.yml
# Determine baseurl based on deployment target
BASEURL=""
if [ "${{ github.repository }}" = "AcademySoftwareFoundation/OpenCue" ]; then
# Main repository - deploying to docs.opencue.io
BASEURL=""
elif [ "${{ github.event_name }}" = "pull_request" ]; then
# Pull request - use GitHub Pages path
BASEURL="/OpenCue"
else
# Fork or other deployment - use GitHub Pages path
if [ "${{ steps.version.outputs.version }}" != "main" ]; then
BASEURL="${{ steps.pages.outputs.base_path }}/${{ steps.version.outputs.version }}"
else
BASEURL="${{ steps.pages.outputs.base_path }}"
fi
fi
# Build documentation using Docker
docker run --rm \
-v "$(pwd):/docs" \
-e JEKYLL_ENV=production \
opencue-docs:ci \
bundle exec jekyll build --baseurl "$BASEURL" --verbose
# Fix permissions after Docker build (Docker runs as root, so files are owned by root)
sudo chown -R $USER:$USER _site/
- name: Create version redirect
if: github.event_name != 'pull_request'
working-directory: ./docs/_site
run: |
# Create a simple redirect for /latest to main version
mkdir -p latest
cat > latest/index.html <<EOF
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="0; url=../">
<link rel="canonical" href="../">
</head>
<body>
<p>Redirecting to latest documentation...</p>
</body>
</html>
EOF
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
if: github.event_name != 'pull_request'
with:
path: ./docs/_site
# Multi-version deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-22.04
needs: build
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main'
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4