Skip to content

chore(git): add .vscode into .gitignore #31

chore(git): add .vscode into .gitignore

chore(git): add .vscode into .gitignore #31

Workflow file for this run

name: Documentation
on:
push:
branches:
- main
tags:
- "*"
workflow_dispatch:
env:
JULIA_NUM_THREADS: 2
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: "1"
- run: |
julia --project=docs -e '
using Pkg
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()'
- run: |
julia --project=docs -e '
using Documenter: doctest
using Nuclides
doctest(Nuclides)'
- run: julia --project=docs docs/make.jl
- uses: actions/upload-pages-artifact@v1
with:
path: ./docs/build
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2