Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

RIP 2018-2024

RIP 2018-2024 #21

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
include-prerelease: true
- name: Build Blazor
run: dotnet publish -c Release SDSetupBlazor
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: SDSetupBlazor/bin/Release/net6.0/publish/wwwroot # The folder the action should deploy.