Skip to content

Archive audio-steg-host-option-rename OpenSpec change #111

Archive audio-steg-host-option-rename OpenSpec change

Archive audio-steg-host-option-rename OpenSpec change #111

Workflow file for this run

name: Deploy Documentation
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y doxygen gcc-14 libc6-dev make libfftw3-dev libsndfile1-dev portaudio19-dev
- name: Generate documentation
run: make docs CC=gcc-14
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs/html
deploy:
needs: build
runs-on: ubuntu-24.04
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4