Build DEBUG that has all experimental features

This commit is contained in:
Kamil Trzciński 2022-12-02 19:46:28 +01:00
parent da7508eb7e
commit f30596ae1a
3 changed files with 12 additions and 4 deletions

View file

@ -21,11 +21,11 @@ jobs:
- name: Install dependencies
run: dotnet restore
- name: Build without Version
run: dotnet build --configuration Release --output ${{ env.SteamDeckTools }}-develop/
run: dotnet build --configuration Debug --output ${{ env.SteamDeckTools }}-debug/
- name: Test
run: dotnet test --no-restore --verbosity normal
- uses: vimtor/action-zip@v1
with:
files: ${{ env.SteamDeckTools }}-develop
dest: ${{ env.SteamDeckTools }}-develop.zip
files: ${{ env.SteamDeckTools }}-debug
dest: ${{ env.SteamDeckTools }}-debug.zip
recursive: true