Skip to content

init

init #2

Workflow file for this run

name: Deploy DocC
on:
push:
branches:
- main
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: macOS-14
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Init
run: |
make init
- name: Build DocC
run: |
make doc_build
- name: Export DocC
run: |
make doc_export
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: 'docs'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1