change icon (#78) #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ | |
password: ${{ secrets.password }} |