Skip to content

Commit e2af83e

Browse files
committed
Revert "Shell extension builds are uploaded only as artifacts"
This reverts commit 73ed900.
1 parent cab35df commit e2af83e

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/build.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,3 +118,25 @@ jobs:
118118
asset_path: ./build/Release/dxgi.dll
119119
asset_name: dxgi.dll
120120
asset_content_type: application/x-msdownload
121+
122+
- name: Upload ExplorerPatcher.amd64.dll
123+
uses: actions/upload-release-asset@v1
124+
if: github.ref == 'refs/heads/master'
125+
env:
126+
GITHUB_TOKEN: ${{ secrets.PAT }}
127+
with:
128+
upload_url: ${{ steps.create_release.outputs.upload_url }}
129+
asset_path: ./build/Release/ExplorerPatcher.amd64.dll
130+
asset_name: ExplorerPatcher.amd64.dll
131+
asset_content_type: application/x-msdownload
132+
133+
- name: Upload ExplorerPatcher.IA-32.dll
134+
uses: actions/upload-release-asset@v1
135+
if: github.ref == 'refs/heads/master'
136+
env:
137+
GITHUB_TOKEN: ${{ secrets.PAT }}
138+
with:
139+
upload_url: ${{ steps.create_release.outputs.upload_url }}
140+
asset_path: ./build/Release/ExplorerPatcher.IA-32.dll
141+
asset_name: ExplorerPatcher.IA-32.dll
142+
asset_content_type: application/x-msdownload

0 commit comments

Comments
 (0)