Skip to content

Update readme link to point to tifuun #18

Update readme link to point to tifuun

Update readme link to point to tifuun #18

Workflow file for this run

name: Deploy Github Pages
on:
push:
branches:
- main
jobs:
build:
# runs-on: alpine-latest
runs-on: self-hosted
steps:
- name: checkout repo
uses: actions/checkout@v2
# - name: get graphviz and python
# run: |
# xbps-install -Syu
# xbps-install -Syu graphviz python3
#
- name: create venv
run: |
python -m venv venv
- name: install raidoc
run: |
source venv/bin/activate
python -m pip install -e .
- name: install raimad
run: |
source venv/bin/activate
python -m pip install raimad
- name: build raidoc
run: |
source venv/bin/activate
python -m raidoc build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./build
deploy:
#runs-on: alpine-latest
runs-on: self-hosted
permissions:
pages: write
id-token: write
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4