Browse Source

Shell extension builds are uploaded only as artifacts

pull/400/head
Valentin Radu 4 years ago
parent
commit
73ed900943
  1. 22
      .github/workflows/build.yml

22
.github/workflows/build.yml

@ -118,25 +118,3 @@ jobs:
asset_path: ./build/Release/dxgi.dll asset_path: ./build/Release/dxgi.dll
asset_name: dxgi.dll asset_name: dxgi.dll
asset_content_type: application/x-msdownload 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

Loading…
Cancel
Save