try new approach for building and deploying docs #203
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: MultiDocumentation | |
on: | |
push: | |
branches: | |
- master | |
tags: '*' | |
pull_request: | |
jobs: | |
build_multidocs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v2 | |
with: | |
version: '1.10.5' | |
- uses: julia-actions/cache@v2 | |
- name: Set up | |
run: git config --global init.defaultBranch master | |
- name: Build GNNGraphs docs | |
run: | |
julia --project=GNNGraphs/docs/ -e ' | |
using Pkg; | |
pkg"dev ./GNNGraphs"; | |
Pkg.instantiate(); | |
include("GNNGraphs/docs/make.jl")' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token | |
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} | |
- name: Build GNNlib docs | |
run: julia --project=GNNlib/docs/ -e ' | |
using Pkg; | |
pkg"dev ./GNNlib ./GNNGraphs"; | |
Pkg.instantiate(); | |
include("GNNlib/docs/make.jl")' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token | |
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} | |
- name: Build GNNLux docs | |
run: julia --project=GNNLux/docs/ -e ' | |
using Pkg; | |
pkg"dev ./GNNLux ./GNNlib ./GNNGraphs"; | |
Pkg.instantiate(); | |
include("GNNLux/docs/make.jl")' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token | |
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} | |
- name: Build GraphNeuralNetworks docs | |
run: julia --project=GraphNeuralNetworks/docs/ -e ' | |
using Pkg; | |
pkg"dev ./GraphNeuralNetworks ./GNNlib ./GNNGraphs"; | |
Pkg.instantiate(); | |
include("GraphNeuralNetworks/docs/make.jl")' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token | |
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} | |
# Build and deploy multidocs | |
- name: Install dependencies for multidocs | |
run: julia --project=docs/ -e ' | |
using Pkg; | |
pkg"dev ./GraphNeuralNetworks ./GNNlib ./GNNGraphs ./GNNLux"; | |
Pkg.instantiate();' | |
- name: Check if objects.inv exists for GraphNeuralNetworks | |
run: | | |
if [ -f GraphNeuralNetworks/docs/build/objects.inv ]; then | |
echo "GraphNeuralNetworks: objects.inv exists." | |
else | |
echo "GraphNeuralNetworks: objects.inv does not exist!" && exit 1 | |
fi | |
- name: Config git | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token | |
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} | |
run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
- name: Build multidocs | |
if: github.event_name == 'pull_request' | |
run: | | |
julia --project=docs/ docs/make-multi.jl PR | |
- name: Build and deploy multidocs | |
if: github.event_name != 'pull_request' | |
run: | | |
julia --project=docs/ docs/make-multi.jl |