Skip to content

Deploy Blog to Netlify #996

Deploy Blog to Netlify

Deploy Blog to Netlify #996

Workflow file for this run

name: Deploy Blog to Netlify
on:
push:
branches:
- main
schedule:
- cron: "0 5 * * *"
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
ref: main
submodules: recursive
- uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
- run: dotnet run -c Release -- deploy
env:
NetlifySiteId: ${{ secrets.NetlifySiteId }}
NetlifyAccessToken: ${{ secrets.NetlifyAccessToken }}