Skip to content

fixed open icon issue #3

fixed open icon issue

fixed open icon issue #3

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [main]
permissions:
contents: write
jobs:
deploy-to-github-pages:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x
- name: Publish .NET Core Project
run: dotnet publish src/BitesInByte.Tools.csproj -c Release -o release --nologo
- name: Change base-tag in index.html from / to tools
run: sed -i 's/<base href="\/" \/>/<base href="https\:\/\/tools.bitesinbyte.com\/" \/>/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:
folder: release/wwwroot