Skip to content

Update Angor.Website.csproj #3

Update Angor.Website.csproj

Update Angor.Website.csproj #3

Workflow file for this run

name: gh-pages
on:
push:
branches:
- main
permissions:
contents: write
jobs:
build:
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession.
runs-on: ubuntu-latest
env:
PROJECT_PATH: "src/Angor.Website"
OUTPUT_PATH: "Output"
BUILD_CONFIGURATION: "Release"
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x
- name: Publish (Angor)
run: dotnet publish ${{env.PROJECT_PATH}} -f net8.0 --configuration ${{env.BUILD_CONFIGURATION}} --output ${{env.OUTPUT_PATH}}
# copy index.html to 404.html to serve the same file when a file is not found
- name: Copy index.html to 404.html
run: cp ${{env.OUTPUT_PATH}}/wwwroot/index.html ${{env.OUTPUT_PATH}}/wwwroot/404.html
# add .nojekyll file to tell GitHub pages to not treat this as a Jekyll project. (Allow files and folders starting with an underscore)
- name: Add .nojekyll file
run: touch ${{env.OUTPUT_PATH}}/wwwroot/.nojekyll
- name: Deploy to Github Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages # The branch the action should deploy to.
folder: ${{env.OUTPUT_PATH}}/wwwroot # The folder the action should deploy.