Skip to content

Commit

Permalink
add workflow for GitHub Actions to deploy docs
Browse files Browse the repository at this point in the history
  • Loading branch information
seabbs committed Feb 29, 2024
1 parent 41eb839 commit b551042
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/document-EpiAware.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Documenter
on:
push:
branches: [main, master]
tags: [v*]
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
Documenter:
permissions:
contents: write
statuses: write
name: Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
sparse-checkout: EpiAware
sparse-checkout-cone-mode: false
- name: Move EpiAware to root
run: mv EpiAware/*
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-docdeploy@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit b551042

Please sign in to comment.