chore(release): bump version to 0.6.0 #34
This file contains hidden or 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: Generate Documentation | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "include/**" | |
| - "doc/**" | |
| - "README.md" | |
| - "CHANGELOG.md" | |
| - ".github/workflows/documentation.yml" | |
| - "**/CMakeLists.txt" | |
| - "**/*.cmake" | |
| - "**/*.cmake.in" | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| concurrency: | |
| group: github-pages | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Cache Doxygen | |
| id: cache-doxygen | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/doxygen-1.15.0 | |
| key: doxygen-1.15.0-linux | |
| - name: Install Dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y graphviz | |
| if [ ! -f ~/doxygen-1.15.0/bin/doxygen ]; then | |
| wget https://www.doxygen.nl/files/doxygen-1.15.0.linux.bin.tar.gz | |
| tar -xzf doxygen-1.15.0.linux.bin.tar.gz -C ~/ | |
| fi | |
| sudo cp ~/doxygen-1.15.0/bin/doxygen /usr/local/bin/ | |
| doxygen --version | |
| - name: Configure CMake | |
| run: | | |
| cmake -B build -DNFX_DATETIME_BUILD_DOCUMENTATION=ON | |
| - name: Build Documentation | |
| run: cmake --build build --target nfx-datetime-documentation | |
| - name: Setup Pages | |
| uses: actions/configure-pages@v5 | |
| - name: Upload artifact | |
| uses: actions/upload-pages-artifact@v4 | |
| with: | |
| path: ./build/doc/html | |
| deploy: | |
| needs: build | |
| runs-on: ubuntu-latest | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| steps: | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 |