From c68edcecfffe7be0e892853b8a00b12f282498a1 Mon Sep 17 00:00:00 2001 From: Chris Fernald Date: Thu, 20 Apr 2023 14:13:44 -0700 Subject: [PATCH] Update Build-UefiExt.yaml to publish on manual action. (#497) ## Description Updates Build-UefiExt.yaml to upload the dll artifact on manual runs to allow manual refresh of binary. - [ ] Impacts functionality? - [ ] Impacts security? - [ ] Breaking change? - [ ] Includes tests? - [ ] Includes documentation? ## How This Was Tested N/A ## Integration Instructions N/A Signed-off-by: Chris Fernald --- .github/workflows/Build-UefiExt.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Build-UefiExt.yaml b/.github/workflows/Build-UefiExt.yaml index af9a5e97..4ed5202d 100644 --- a/.github/workflows/Build-UefiExt.yaml +++ b/.github/workflows/Build-UefiExt.yaml @@ -38,7 +38,7 @@ jobs: run: msbuild UefiDbgExt\uefiext.vcxproj -property:Configuration=${{ matrix.configuration }} -property:Platform=${{ matrix.platform }} - name: Publish Binary - if: ${{ matrix.configuration == 'Release' && github.event_name == 'push' }} + if: ${{ matrix.configuration == 'Release' && github.event_name != 'pull_request' }} uses: actions/upload-artifact@v3 with: name: UefiDbgExt-${{ matrix.platform }}-${{ matrix.configuration }}