Skip to content

Commit 7a30fa9

Browse files
committed
Fix exe artifact not uploaded
1 parent 892692c commit 7a30fa9

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/build-project.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,8 +290,14 @@ jobs:
290290
config: ${{ needs.check-event.outputs.config }}
291291
package: ${{ fromJSON(needs.check-event.outputs.package) }}
292292

293-
- name: Upload Artifacts 📡
293+
- name: Upload Zip Artifacts 📡
294294
uses: actions/upload-artifact@v4
295295
with:
296296
name: ${{ steps.setup.outputs.pluginName }}-${{ steps.setup.outputs.pluginVersion }}-windows-x64-${{ needs.check-event.outputs.commitHash }}
297-
path: ${{ github.workspace }}/release/${{ steps.setup.outputs.pluginName }}-${{ steps.setup.outputs.pluginVersion }}-windows-x64*.*
297+
path: ${{ github.workspace }}/release/${{ steps.setup.outputs.pluginName }}-${{ steps.setup.outputs.pluginVersion }}-windows-x64*.zip
298+
299+
- name: Upload Exe Artifacts 📡
300+
uses: actions/upload-artifact@v4
301+
with:
302+
name: ${{ steps.setup.outputs.pluginName }}-${{ steps.setup.outputs.pluginVersion }}-windows-x64-Installer-${{ needs.check-event.outputs.commitHash }}
303+
path: ${{ github.workspace }}/release/${{ steps.setup.outputs.pluginName }}-${{ steps.setup.outputs.pluginVersion }}-windows-x64*.exe

0 commit comments

Comments
 (0)