Skip to content

Notice about the project freeze due to reasons outlined in the linked… #164

Notice about the project freeze due to reasons outlined in the linked…

Notice about the project freeze due to reasons outlined in the linked… #164

Workflow file for this run

name: DeployToGitHubPages
env:
OUTPUT_DIR: Output
# Controls when the action will run
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Generate Website
run: dotnet run
- name: Deploy Website
if: success()
uses: crazy-max/[email protected]
with:
target_branch: gh-pages
build_dir: ${{ env.OUTPUT_DIR }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}