This repository has been archived by the owner on Feb 22, 2024. It is now read-only.
Deploy Site #13548
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Site | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 */2 * * *' | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '5.0.100' # SDK Version to use. | |
- run: dotnet run -- deploy | |
env: | |
GITHUB_TOKEN: ${{ secrets.PERSONAL_GITHUB_TOKEN }} | |
NETLIFY_TOKEN: ${{ secrets.NETLIFY_TOKEN }} | |
ALGOLIA_TOKEN: ${{ secrets.ALGOLIA_TOKEN }} |