[Draft] Modify mesh IO to support nonconformal mesh initialization #406
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: Documentation | |
on: | |
push: | |
branches: | |
- main | |
tags: '*' | |
pull_request: | |
jobs: | |
build-docs: | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build and deploy | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
julia --project=docs -e 'using Pkg; Pkg.instantiate()' | |
julia --project=docs --color=yes docs/make.jl | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: docs | |
path: docs/build/ | |
retention-days: 7 |