Skip to content

Commit fbbe8a2

Browse files
authored
Try to fix archive artifacts in Linux and Windows build #2
1 parent 61f6dae commit fbbe8a2

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,10 @@ jobs:
7171
./appimagetool-*.AppImage -s deploy ./appdir/usr/share/applications/*.desktop # Bundle EVERYTHING
7272
VERSION=1.0 ./appimagetool-*.AppImage ./appdir # turn AppDir into AppImage
7373
74-
- name: Archive artifacts (welle.io build dir)
74+
- name: Archive artifacts (welle.io AppImage)
7575
if: always() && steps.build.outcome == 'failure'
7676
uses: actions/upload-artifact@v4
7777
with:
78-
name: welle.io build dir
79-
path: *.AppImage
78+
name: welle.io AppImage
79+
path: ./*.AppImage
8080
if-no-files-found: error

.github/workflows/windows.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,10 @@ jobs:
7272
# Run InnoSetup
7373
& "ISCC" "/F$Filename" "windows/installer.iss"
7474
75-
- name: Archive artifacts (welle.io build dir)
75+
- name: Archive artifacts (welle.io Windows installer)
7676
if: always() && steps.build.outcome == 'failure'
7777
uses: actions/upload-artifact@v4
7878
with:
79-
name: welle.io build dir
80-
path: *.exe
79+
name: welle.io Windows installer
80+
path: .\*.exe
8181
if-no-files-found: error

0 commit comments

Comments
 (0)