Create release to run when RELEASE.md is changed

This commit is contained in:
Kamil Trzciński 2022-11-27 09:32:20 +01:00
parent 6bbf9d8bad
commit fc50d9d93f
2 changed files with 10 additions and 6 deletions

31
.github/workflows/build_test.yaml vendored Normal file
View file

@ -0,0 +1,31 @@
on:
push:
paths-ignore:
- '.github/workflows/build_release.yaml'
- 'RELEASE.md'
pull_request:
env:
RELEASE_NAME: SteamDeckTools
DOTNET_VERSION: '6.0.x'
jobs:
build-and-test:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Install dependencies
run: dotnet restore
- name: Build without Version
run: dotnet build --configuration Release --output ${{ env.SteamDeckTools }}-develop/
- name: Test
run: dotnet test --no-restore --verbosity normal
- uses: vimtor/action-zip@v1
with:
files: ${{ env.SteamDeckTools }}-develop
dest: ${{ env.SteamDeckTools }}-develop.zip
recursive: true