Skip to content

Merge pull request #19 from tatang26/fix-assets-path-for #21

Merge pull request #19 from tatang26/fix-assets-path-for

Merge pull request #19 from tatang26/fix-assets-path-for #21

Workflow file for this run

name: Deploy Docs
on:
push:
branches:
- main
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
Build:
name: build docs
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v2
- name: Setup Doco
run: >
wget https://github.com/paganotoni/doco/releases/latest/download/doco_Linux_x86_64.tar.gz &&
tar -xvf doco_Linux_x86_64.tar.gz
- run: ./doco build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: "public"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4