Skip to content

Delete .github/.github directory #130

Delete .github/.github directory

Delete .github/.github directory #130

Workflow file for this run

name: Deploy Site
on:
workflow_dispatch:
push:
branches: [ "WebSite" ]
jobs:
build:
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Configure Yarn
working-directory: ${{github.workspace}}/docusaurus
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
run: yarn
- name: Build
working-directory: ${{github.workspace}}/docusaurus
# Build your program with the given configuration
run: yarn build
- name: Deploy
working-directory: ${{github.workspace}}/docusaurus
# Execute tests defined by the CMake configuration.
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: yarn run deploy