Skip to content

add invalid test case for generic named tuple base class ordering #4926

add invalid test case for generic named tuple base class ordering

add invalid test case for generic named tuple base class ordering #4926

name: publish website
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build_docs_job:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Build the Website
run: |
cd documentation/website
yarn install
yarn run build
echo "OUTPUT_TIME=$(date +'%Y-%m-%d %H:%M:%S')" >> $GITHUB_ENV
- name: Get output time
run: echo "The time was ${{ env.OUTPUT_TIME }} (UTC)"
- name: Deploy
if: ${{ github.event_name == 'push' }}
uses: JamesIves/github-pages-deploy-action@5c6e9e9f3672ce8fd37b9856193d2a537941e66c # releases/v4
with:
TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: documentation/website/build # The folder the action should deploy.