openssl: update bundled libraries to openssl-3.4.1 #120
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: Deploy docs to GitHub pages | |
| on: | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| env: | |
| FORCE_COLOR: "1" | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| concurrency: | |
| group: "pages" | |
| cancel-in-progress: true | |
| jobs: | |
| docs: | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: laytan/setup-odin@v2 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| release: false | |
| llvm-version: 17 | |
| - name: Report | |
| run: odin report | |
| - name: Get commonmark | |
| run: sudo apt-fast install libcmark-dev | |
| - name: Get and build Odin docs generator | |
| run: | | |
| cd /home/runner | |
| git clone https://github.com/odin-lang/pkg.odin-lang.org odin-doc | |
| cd odin-doc | |
| # The /home/runner/odin directory is in the PATH so output it there. | |
| odin build . -out:/home/runner/odin/odin-doc | |
| cd /home/runner | |
| - uses: actions/checkout@v4 | |
| - name: Generate documentation | |
| run: ./docs/generate.sh | |
| - uses: actions/configure-pages@v3 | |
| - uses: actions/upload-pages-artifact@v2 | |
| with: | |
| path: ./docs/build | |
| - uses: actions/deploy-pages@v2 | |
| id: deployment |