File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -118,3 +118,25 @@ jobs:
118
118
asset_path : ./build/Release/dxgi.dll
119
119
asset_name : dxgi.dll
120
120
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
You can’t perform that action at this time.
0 commit comments