Skip to content

Adding icons and updating gitignore #7

Adding icons and updating gitignore

Adding icons and updating gitignore #7

Workflow file for this run

name: Build dotnet
on: [push]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core SDK 6.0.x
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
- name: Install dependencies
run: dotnet restore
# - name: Build
# run: dotnet build --configuration Release --no-restore --self-contained true
- name: Test
run: dotnet test --no-restore --verbosity normal
- name: Publish
run: dotnet publish -r win-x64 --self-contained false -o ./output
# - name: Upload Release artifact
# uses: actions/upload-artifact@v3
# with:
# name: Release
# path: bin/Release
- name: Upload Publish artifact
uses: actions/upload-artifact@v3
with:
name: Publish
path: output