Validate D3D12 alignment requirement when copying from a buffer to a … #1421
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: Doxygen | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Apt Update | |
run: sudo apt-get update | |
- name: Apt Install | |
run: sudo apt-get install doxygen --yes --quiet | |
- name: Create documentation | |
run: doxygen Doxyfile | |
- name: Clone website | |
run: git clone -b gh-pages https://github.com/Kode/Kinc.git Kinc-pages | |
- name: Remove old documentation | |
run: rm -r Kinc-pages/api | |
- name: Copy new documentation | |
run: cp -R Docs/html Kinc-pages/api | |
- name: Set name | |
run: git config --global user.name "Robbot" | |
- name: Set email | |
run: git config --global user.email "[email protected]" | |
- name: Add documentation | |
run: git -C Kinc-pages add . | |
- name: Commit documentation | |
id: commit | |
continue-on-error: true | |
run: git -C Kinc-pages commit -m "Update documentation to $GITHUB_SHA." | |
- name: Push documentation | |
if: steps.commit.outcome == 'success' | |
continue-on-error: true | |
run: git -C Kinc-pages push https://Kode-Robbot:[email protected]/Kode/Kinc.git gh-pages | |
env: | |
ROBBOT_PASS: ${{ secrets.ROBBOT_PASS }} |