Skip to content

Add LabelEfficiencyCalculation Params #192

Add LabelEfficiencyCalculation Params

Add LabelEfficiencyCalculation Params #192

Workflow file for this run

name: deploy-gh-pages
on:
push:
branches: [ master ]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup .NET 5
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.400
- name: Restore tools
env:
GithubUser: ${{ secrets.GITHUBUSER }}
PackageToken: ${{ secrets.PACKAGETOKEN }}
run: dotnet tool restore
- name: Restore
env:
GithubUser: ${{ secrets.GITHUBUSER }}
PackageToken: ${{ secrets.PACKAGETOKEN }}
run: dotnet restore
- name: Build
working-directory: ./
run: dotnet fsdocs build --eval --noapidocs
- name: deploy
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: ./output # The folder the action should deploy.
CLEAN: true # Automatically remove deleted files from the deploy branch