Skip to content

Merge pull request #96 from Syriiin/new-mod-format #44

Merge pull request #96 from Syriiin/new-mod-format

Merge pull request #96 from Syriiin/new-mod-format #44

Workflow file for this run

name: deploy-docs
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- run: make build-docs
- name: Upload artifacts
uses: actions/upload-pages-artifact@v3
with:
name: docs
path: docs/site/
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-22.04
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
with:
artifact_name: docs