From 72e0dbc99657bf87125cbbccf60d4ee0ab4c7a1d Mon Sep 17 00:00:00 2001 From: Jaex Date: Sun, 1 Jan 2023 14:08:55 +0300 Subject: [PATCH] Build MicrosoftStoreDebug --- .github/workflows/build.yml | 16 ++++++++++++++++ .github/workflows/pr.yml | 1 + 2 files changed, 17 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 84e1e03d4..17bb67b98 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,6 +23,7 @@ jobs: - Debug - Steam - MicrosoftStore + - MicrosoftStoreDebug platform: - Any CPU @@ -106,6 +107,13 @@ jobs: name: MicrosoftStore path: Output\ShareX-*.appx + - name: Upload artifact (MicrosoftStoreDebug) + if: matrix.configuration == 'MicrosoftStoreDebug' + uses: actions/upload-artifact@v3 + with: + name: MicrosoftStoreDebug + path: Output\ShareX-*-debug.appx + release: name: Release needs: build @@ -154,6 +162,13 @@ jobs: name: MicrosoftStore path: Output + - name: Download artifact (MicrosoftStoreDebug) + if: github.ref == 'refs/heads/develop' + uses: actions/download-artifact@v3 + with: + name: MicrosoftStoreDebug + path: Output + - name: Create release body file run: | $checksums = Get-ChildItem -Path "Output\" -Recurse -File @@ -187,6 +202,7 @@ jobs: Output/ShareX-*-debug.zip Output/ShareX-*-Steam.zip Output/ShareX-*.appx + Output/ShareX-*-debug.appx - name: Release (Stable) env: diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 712e35235..325703db2 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -21,6 +21,7 @@ jobs: - Debug - Steam - MicrosoftStore + - MicrosoftStoreDebug platform: - Any CPU