Skip to content

Remove timer.

Remove timer. #35

Workflow file for this run

name: Build test and publish
on:
push:
branches:
- "main"
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build-and-test:
uses: ./.github/workflows/build-and-test.yml
deploy:
runs-on: ubuntu-latest
needs: [build-and-test]
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Download docs artifact
# docs artifact is uploaded by build-docs job
uses: actions/download-artifact@v4
with:
name: webpage
path: "./doc/public"
- name: Upload pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: "./doc/public"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4