Skip to content

Merge pull request #16 from Auction-Bot/hu-HU-Translation-63886021033… #67

Merge pull request #16 from Auction-Bot/hu-HU-Translation-63886021033…

Merge pull request #16 from Auction-Bot/hu-HU-Translation-63886021033… #67

Workflow file for this run

name: github pages
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
# Checkout the code
- uses: actions/checkout@v3
# Install .NET Core SDK
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
# Publish the site
- name: Publish
run: dotnet publish Homepage.sln -c:Release -o:publish -p:GHPages=true
# Deploy the site
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: publish/wwwroot
force_orphan: true