1
0
Fork 0
mirror of https://github.com/MillironX/XAM.jl.git synced 2024-11-15 06:43:10 +00:00
XAM.jl/.github/workflows/Documentation.yml

27 lines
756 B
YAML
Raw Normal View History

name: Build Documentation
2020-01-18 02:46:46 +00:00
on:
push:
branches:
- master
- develop
- release/*
tags: '*'
pull_request:
2020-01-18 02:46:46 +00:00
jobs:
build:
runs-on: ubuntu-latest
2020-01-18 02:46:46 +00:00
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
2020-01-18 02:46:46 +00:00
with:
version: '1'
- name: Install Dependencies
run: julia --color=yes --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
- name: Build and Deploy
2020-01-18 02:46:46 +00:00
env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # For authentication with SSH deploy key
run: julia --color=yes --project=docs/ docs/make.jl