Skip to content

Commit

Permalink
Fix items not being uploaded to tagged release
Browse files Browse the repository at this point in the history
  • Loading branch information
adamkahl committed Feb 19, 2025
1 parent 2f2dad6 commit b50541d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,13 @@ jobs:
- name: Download Build Artifacts
uses: actions/download-artifact@v4
with:
path: dist_electron
path: .
merge-multiple: true # Merge files into the root

- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
draft: true
files: dist_electron/*
files: ./* # Correct path to the renamed files
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit b50541d

Please sign in to comment.