Skip to content

Integración de Cambios para Subyacente Óptima 2024 B y C #502

Integración de Cambios para Subyacente Óptima 2024 B y C

Integración de Cambios para Subyacente Óptima 2024 B y C #502

Workflow file for this run

name: Documentation
on:
push:
branches:
- main
tags: '*'
pull_request:
branches:
- main
jobs:
docs:
name: Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: '1.7'
- uses: actions/cache@v1
env:
cache-name: cache-packages
with:
path: ~/.julia
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
- run: julia -e 'import Pkg; Pkg.Registry.add(Pkg.RegistrySpec(url = "https://github.com/JuliaRegistries/General")); Pkg.Registry.add(Pkg.RegistrySpec(url = "https://github.com/DIE-BG/RegistryDIE"))'
- run: |
julia --project=docs -e '
using Pkg
Pkg.instantiate()'
- run: julia --project=docs docs/make.jl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}