Skip to content

Commit

Permalink
Try to fix archive artifacts in Linux and Windows build #2
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbrechtL authored Sep 1, 2024
1 parent 61f6dae commit fbbe8a2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ jobs:
./appimagetool-*.AppImage -s deploy ./appdir/usr/share/applications/*.desktop # Bundle EVERYTHING
VERSION=1.0 ./appimagetool-*.AppImage ./appdir # turn AppDir into AppImage
- name: Archive artifacts (welle.io build dir)
- name: Archive artifacts (welle.io AppImage)
if: always() && steps.build.outcome == 'failure'
uses: actions/upload-artifact@v4
with:
name: welle.io build dir
path: *.AppImage
name: welle.io AppImage
path: ./*.AppImage
if-no-files-found: error
6 changes: 3 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ jobs:
# Run InnoSetup
& "ISCC" "/F$Filename" "windows/installer.iss"
- name: Archive artifacts (welle.io build dir)
- name: Archive artifacts (welle.io Windows installer)
if: always() && steps.build.outcome == 'failure'
uses: actions/upload-artifact@v4
with:
name: welle.io build dir
path: *.exe
name: welle.io Windows installer
path: .\*.exe
if-no-files-found: error

0 comments on commit fbbe8a2

Please sign in to comment.