Update runner to ubuntu-24.04 #46
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: Build and deploy Jekyll site to GitHub Pages + Update README.md with latest blog posts | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| github-pages: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| submodules: true | |
| - uses: helaili/[email protected] | |
| env: | |
| JEKYLL_PAT: ${{ secrets.JEKYLL_PAT }} | |
| JEKYLL_ENV: production | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| target_branch: 'gh-pages' | |
| update-readme: | |
| needs: github-pages | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| persist-credentials: false | |
| fetch-depth: 0 | |
| - run: | | |
| echo '<link rel="stylesheet" type="text/css" media="all" href="https://antoinebrl.github.io/css/style.css"/>' > README.md | |
| sleep 60 | |
| curl https://antoinebrl.github.io/ | awk 'f{if ($0=="</div>") exit; print} $0==" <div class=\"content\">"{f=1}' | tr -d '\n' | sed 's/> *</></g' | sed 's/<a class="post-link" href="\//<a href="https\:\/\/antoinebrl.github.io\//g' >> README.md | |
| echo '</div></div>' >> README.md | |
| - name: Commit & Push changes | |
| uses: actions-js/push@master | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| branch: master |