Skip to content

Commit

Permalink
Merge pull request #369 from bcgov/fix-desk-app-wf
Browse files Browse the repository at this point in the history
Trys to ACTUALLY upload the artifacts to release.
  • Loading branch information
Bottle7 authored Nov 29, 2024
2 parents 4e30f86 + 3beab17 commit 52368e9
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/desktop-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -137,16 +137,14 @@ jobs:
- name: Download build artifacts
uses: actions/download-artifact@v4
with:
path: desktop/dist/
path: ./desktop/dist/

# Create a GitHub release
- name: Create GitHub Release
id: create_release
uses: softprops/action-gh-release@v2
with:
files: |
desktop/dist/*.exe
desktop/dist/*.dmg
files: ./desktop/dist/**/*
tag_name: ${{ needs.version_bump.outputs.VERSION }}
name: Release ${{ needs.version_bump.outputs.VERSION }}
body: "Release ${{ needs.version_bump.outputs.VERSION }} for electron-updater"
Expand Down

0 comments on commit 52368e9

Please sign in to comment.