Skip to content

Commit

Permalink
Try to fix archive artifacts in Linux and Windows build #3
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbrechtL authored Sep 1, 2024
1 parent fbbe8a2 commit 8ffd86d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
VERSION=1.0 ./appimagetool-*.AppImage ./appdir # turn AppDir into AppImage
- name: Archive artifacts (welle.io AppImage)
if: always() && steps.build.outcome == 'failure'
if: always() && steps.create_appimage.outcome == 'success'
uses: actions/upload-artifact@v4
with:
name: welle.io AppImage
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ jobs:
mingw32-make -j4
- name: Create installer
id: create_installer
run: |
Write-Host "*** Create new bin folder ***" -ForegroundColor Red
New-Item -ItemType directory -Path installer
Expand All @@ -73,7 +74,7 @@ jobs:
& "ISCC" "/F$Filename" "windows/installer.iss"
- name: Archive artifacts (welle.io Windows installer)
if: always() && steps.build.outcome == 'failure'
if: always() && steps.create_installer.outcome == 'success'
uses: actions/upload-artifact@v4
with:
name: welle.io Windows installer
Expand Down

0 comments on commit 8ffd86d

Please sign in to comment.