mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-04-04 13:57:39 +00:00
Build DEBUG that has all experimental features
This commit is contained in:
parent
da7508eb7e
commit
f30596ae1a
3 changed files with 12 additions and 4 deletions
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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue