From e2af83e68b50f812f78e2dd3ea25dcbd8751fa8a Mon Sep 17 00:00:00 2001 From: Valentin Radu Date: Thu, 11 Nov 2021 06:21:10 +0200 Subject: [PATCH] Revert "Shell extension builds are uploaded only as artifacts" This reverts commit 73ed9009438be53bbcac1d8a9c1e97eca1af6dc8. --- .github/workflows/build.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a9f5f50..11707f8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -118,3 +118,25 @@ jobs: asset_path: ./build/Release/dxgi.dll asset_name: dxgi.dll asset_content_type: application/x-msdownload + + - name: Upload ExplorerPatcher.amd64.dll + uses: actions/upload-release-asset@v1 + if: github.ref == 'refs/heads/master' + env: + GITHUB_TOKEN: ${{ secrets.PAT }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} + asset_path: ./build/Release/ExplorerPatcher.amd64.dll + asset_name: ExplorerPatcher.amd64.dll + asset_content_type: application/x-msdownload + + - name: Upload ExplorerPatcher.IA-32.dll + uses: actions/upload-release-asset@v1 + if: github.ref == 'refs/heads/master' + env: + GITHUB_TOKEN: ${{ secrets.PAT }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} + asset_path: ./build/Release/ExplorerPatcher.IA-32.dll + asset_name: ExplorerPatcher.IA-32.dll + asset_content_type: application/x-msdownload