Skip to content

Commit

Permalink
Additional fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffvli committed Mar 2, 2025
1 parent 0c6c46d commit a3575e0
Showing 1 changed file with 24 additions and 15 deletions.
39 changes: 24 additions & 15 deletions .github/workflows/publish-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,20 +39,29 @@ jobs:
npm run package:pr
on_retry_command: npm cache clean --force

- name: Merge and upload Windows Binaries
uses: actions/upload-artifact/merge@v4
with:
name: windows-binaries
pattern: release/build/*.exe
- name: Loop through all files in release/build
run: |
for file in release/build/*; do
echo "Uploading $file"
uses: actions/upload-artifact@v4
with:
name: $file
path: $file
- name: Merge and upload Linux Binaries
uses: actions/upload-artifact/merge@v4
with:
name: linux-binaries
pattern: release/build/*.{AppImage,deb,rpm}
# - name: Merge and upload Windows Binaries
# uses: actions/upload-artifact/merge@v4
# with:
# name: windows-binaries
# pattern: release/build/*.exe

- name: Merge and upload MacOS Binaries
uses: actions/upload-artifact/merge@v4
with:
name: macos-binaries
path: release/build/*.dmg
# - name: Merge and upload Linux Binaries
# uses: actions/upload-artifact/merge@v4
# with:
# name: linux-binaries
# pattern: release/build/*.{AppImage,deb,rpm}

# - name: Merge and upload MacOS Binaries
# uses: actions/upload-artifact/merge@v4
# with:
# name: macos-binaries
# path: release/build/*.dmg

0 comments on commit a3575e0

Please sign in to comment.