gx: add GX_GetTexObjLOD() (#173) #14
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build documentation | |
on: | |
push: | |
tags: [ v* ] | |
jobs: | |
build: | |
name: Build documentation | |
runs-on: ubuntu-latest | |
container: devkitpro/devkitppc:latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
persist-credentials: false | |
- name: Display Doxygen version | |
run: echo "Doxygen version $(doxygen -v)" | |
- name: Build documentation | |
run: | | |
OGC_VERSION=${{ github.ref_name }} doxygen Doxyfile | |
- name: Deploy 🚀 | |
uses: JamesIves/[email protected] | |
with: | |
BRANCH: gh-pages | |
FOLDER: docs/html | |
CLEAN: true | |
SINGLE_COMMIT: true |