Skip to content

Fix overwrites from files in the original branch which causes changes in the current branch to be missed until the next commit #31

Fix overwrites from files in the original branch which causes changes in the current branch to be missed until the next commit

Fix overwrites from files in the original branch which causes changes in the current branch to be missed until the next commit #31

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request: ~
env:
DOTNET_NOLOGO: true
jobs:
build:
runs-on: windows-2022 # Currently, windows-latest is windows-2019 which doesn't have .NET 6
steps:
- uses: actions/checkout@v2
- name: Pack and test
run: ./build.ps1
- name: Upload bin artifact
if: always()
uses: actions/upload-artifact@v2
with:
name: Bin
path: artifacts/Bin
- name: Upload logs artifact
if: always()
uses: actions/upload-artifact@v2
with:
name: Logs
path: artifacts/Logs