Skip to content

Commit

Permalink
Added .github/workflows/deploy.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
BenMcLean committed Nov 9, 2024
1 parent f3dd317 commit 1750c00
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Deploy to GitHub Pages

on:
push:
branches: [ deploy ]
workflow_dispatch:

jobs:
deploy-to-github-pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'

- name: Restore dependencies
run: dotnet restore Voxel2Pixel.sln

- name: Build
run: dotnet build Voxel2Pixel.sln --configuration Release --no-restore

- name: Publish
run: dotnet publish Voxel2Pixel.Web/Voxel2Pixel.Web.csproj -c Release -o release --nologo

# Changes the base tag in index.html from '/' to '/Voxel2Pixel/' to match GitHub Pages repository subdirectory
- name: Change base-tag in index.html
run: sed -i 's/<base href="\/" \/>/<base href="\/Voxel2Pixel\/" \/>/g' release/wwwroot/index.html

# Add .nojekyll file to tell GitHub pages not to run Jekyll processing
- name: Add .nojekyll file
run: touch release/wwwroot/.nojekyll

- name: Commit to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: release/wwwroot
branch: gh-pages

0 comments on commit 1750c00

Please sign in to comment.