strand-bui-backend-session: don't test expired cookie #447
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: Publish user's guide | |
| # Update the user's guide at https://strawlab.github.io/strand-braid/. | |
| # The sitemap is at https://strawlab.github.io/strand-braid/sitemap.xml. | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: strand-braid-user/users-guide | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install static-sitemap-cli | |
| run: npm install static-sitemap-cli | |
| - name: Setup mdBook | |
| uses: peaceiris/actions-mdbook@v2 | |
| with: | |
| mdbook-version: '0.4.5' | |
| # Sitemap stuff from https://github.com/sunshowers-code/rust-cli-recommendations/blob/main/.github/workflows/docs.yml | |
| - name: Build book | |
| run: | | |
| mdbook build | |
| - name: Add canonical link to help with SEO | |
| # Google complains about duplicate pages at https://strawlab.github.io/strand-braid/ and | |
| # https://strawlab.github.io/strand-braid/index.html. So we make the later one the | |
| # canonical link. This is also the link in the sitemap. | |
| run: | | |
| sed -i -e 's/<!-- Custom HTML head -->/<link rel="canonical" href="index.html">/' book/index.html | |
| - name: Generate sitemap | |
| run: | | |
| cd book | |
| npx sscli --no-clean --base https://strawlab.github.io/strand-braid | |
| - name: Deploy | |
| uses: peaceiris/actions-gh-pages@v4 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: strand-braid-user/users-guide/book |