mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2025-12-06 07:12:01 +01:00
Build DEBUG that has all experimental features
This commit is contained in:
parent
da7508eb7e
commit
f30596ae1a
9
.github/workflows/build_release.yaml
vendored
9
.github/workflows/build_release.yaml
vendored
|
|
@ -41,8 +41,10 @@ jobs:
|
|||
fi
|
||||
echo "MajorVer=$majorVer LastVer=$lastVer NextVer=$nextVer"
|
||||
echo "RELEASE_VERSION=$nextVer" >> $GITHUB_ENV
|
||||
- name: Build
|
||||
- name: Build Release
|
||||
run: dotnet build --configuration Release --output "${{ env.RELEASE_NAME }}-${{ env.RELEASE_VERSION }}/" "/property:Version=${{ env.RELEASE_VERSION }}"
|
||||
- name: Build Debug
|
||||
run: dotnet build --configuration Debug --output "${{ env.RELEASE_NAME }}-${{ env.RELEASE_VERSION }}-debug/" "/property:Version=${{ env.RELEASE_VERSION }}"
|
||||
- name: Test
|
||||
run: dotnet test --no-restore --verbosity normal
|
||||
- uses: vimtor/action-zip@v1
|
||||
|
|
@ -50,6 +52,11 @@ jobs:
|
|||
files: ${{ env.RELEASE_NAME }}-${{ env.RELEASE_VERSION }}
|
||||
dest: ${{ env.RELEASE_NAME }}-${{ env.RELEASE_VERSION }}.zip
|
||||
recursive: true
|
||||
- uses: vimtor/action-zip@v1
|
||||
with:
|
||||
files: ${{ env.RELEASE_NAME }}-${{ env.RELEASE_VERSION }}-debug
|
||||
dest: ${{ env.RELEASE_NAME }}-${{ env.RELEASE_VERSION }}-debug.zip
|
||||
recursive: true
|
||||
- uses: ncipollo/release-action@v1
|
||||
with:
|
||||
tag: ${{ env.RELEASE_VERSION }}
|
||||
|
|
|
|||
6
.github/workflows/build_test.yaml
vendored
6
.github/workflows/build_test.yaml
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -22,3 +22,4 @@ It does help this project on being supported.
|
|||
- Go back to `Startup Profile` on `Toggle deskptop mode`
|
||||
- The `X360.Beep()` cycles currently connected device (fixes Playnite error)
|
||||
- Fix using Playnite to launch Steam game where on exit Desktop was activated
|
||||
- Build DEBUG that has all experimental features
|
||||
|
|
|
|||
Loading…
Reference in a new issue