Skip to content

wizard: Support for {Runtime,Build,HostBuild}Dependency #1132

wizard: Support for {Runtime,Build,HostBuild}Dependency

wizard: Support for {Runtime,Build,HostBuild}Dependency #1132

Workflow file for this run

name: Documentation
on:
push:
branches:
- master
tags: '*'
pull_request:
env:
JULIA_PKG_SERVER: ""
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@latest
with:
version: "1.7"
- uses: julia-actions/cache@v1
with:
cache-registries: "true"
- name: Install dependencies
shell: julia --color=yes --project=docs/ {0}
run: |
using Pkg
Pkg.Registry.update()
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()
- uses: julia-actions/julia-docdeploy@releases/v1
env:
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}