Skip to content

Fix link

Fix link #15

Workflow file for this run

on:
push:
branches:
- master
name: πŸš€ Deploy website on push
jobs:
publish:
name: πŸŽ‰ Publish
runs-on: windows-latest
steps:
- name: Setup .NET Core SDK
uses: actions/[email protected]
with:
# Optional SDK version(s) to use. If not provided, will install global.json version when available. Examples: 2.2.104, 3.1, 3.1.x, 3.x, 6.0.2xx
dotnet-version: 8.0.x
- name: 🚚 Get latest code
uses: actions/checkout@v4
- name: Run Publish
run: dotnet publish
- name: πŸ“‚ Upload files
uses: SamKirkland/[email protected]
with:
server: kopernicuswiki.org
port: 2121
username: kopwiki
local-dir: bin/Release/net8.0/publish/
dangerous-clean-slate: true
password: ${{ secrets.password }}