Add GSoC 25 blogpost about GPU-I/O with io_uring #108
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: github pages | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build-deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Setup Hugo | |
| uses: peaceiris/actions-hugo@v2 | |
| with: | |
| hugo-version: '0.128.0' | |
| extended: true | |
| - name: Build Website | |
| run: (hugo --minify -d public && | |
| echo -n blog.llvm.org > public/CNAME ) | |
| - name: Deploy | |
| uses: peaceiris/[email protected] | |
| env: | |
| ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }} | |
| PUBLISH_BRANCH: gh-pages | |
| PUBLISH_DIR: ./public |