Skip to content

Commit eeca408

Browse files
Update action.yml
1 parent d0b682e commit eeca408

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/action.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,12 @@ jobs:
6868
run: ./gradlew -c settings.desktop.gradle buildAllBundles --no-configuration-cache
6969

7070
- name: Upload Desktop Bundles
71-
env:
72-
GH_TOKEN: ${{ github.token }} # Authenticate gh CLI
7371
run: |
7472
for bundle in dist/*; do
7573
bundle_name=$(basename "$bundle")
7674
echo "Uploading $bundle_name..."
77-
gh release upload ${{ github.ref }} "$bundle" --clobber
75+
actions/upload-artifact@v4
76+
with:
77+
name: $bundle_name
78+
path: $bundle
7879
done

0 commit comments

Comments
 (0)