#2: Update screenshot of Dakar Desert Rally trainer so the title bar … #17
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
name: .NET Framework | |
on: | |
push: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Add MSBuild to PATH | |
uses: microsoft/setup-msbuild@v1.3.1 | |
- name: Clone | |
uses: actions/checkout@v3.3.0 | |
- name: Restore | |
run: msbuild -t:restore -p:RestoreLockedMode=true -m | |
- name: Build | |
run: msbuild -t:build -p:Configuration=Release -m | |
- name: Move artifacts | |
run: | | |
New-Item upload -ItemType Directory -Force | |
Copy-Item -Destination .\upload\ *\bin\Release\*.exe | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3.1.2 | |
with: | |
name: Trainers | |
path: upload | |
if-no-files-found: error |