Skip to content

🔧 Fix GitHub Actions workflow parameters #4

🔧 Fix GitHub Actions workflow parameters

🔧 Fix GitHub Actions workflow parameters #4

Workflow file for this run

name: Deploy to GitHub Pages
# Force redeploy with correct base href
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
deploy-to-github-pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Publish .NET Core Project
run: dotnet publish src/web-tutorial/CSharpTutorial/CSharpTutorial.csproj -c Release -o release --nologo
- name: Change base-tag in index.html from / to OCR-CSharp-Tutorial
run: sed -i 's/<base href="\/" \/>/<base href="\/OCR-CSharp-Tutorial\/" \/>/g' release/wwwroot/index.html
- name: copy index.html to 404.html
run: cp release/wwwroot/index.html release/wwwroot/404.html
- name: Add .nojekyll file
run: touch release/wwwroot/.nojekyll
- name: Commit wwwroot to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
folder: release/wwwroot