File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -134,6 +134,7 @@ jobs:
134134 with :
135135 name : ${{ matrix.config.name }} - installer
136136 path : build/Aegisub-*.exe
137+ if-no-files-found : error
137138
138139 - name : Upload artifacts - portable.zip
139140 uses : actions/upload-artifact@v3
@@ -155,3 +156,4 @@ jobs:
155156 with :
156157 name : ${{ matrix.config.name }} - installer
157158 path : build/Aegisub-*.dmg
159+ if-no-files-found : error
Original file line number Diff line number Diff line change @@ -69,7 +69,9 @@ if (!(Test-Path ffi-experiments)) {
6969 git clone https:// github.com / TypesettingTools/ ffi- experiments.git
7070 Set-Location ffi- experiments
7171 meson build - Ddefault_library= static
72+ if (! $? ) { Exit $LASTEXITCODE }
7273 meson compile - C build
74+ if (! $? ) { Exit $LASTEXITCODE }
7375 Set-Location $DepsDir
7476}
7577
@@ -91,7 +93,9 @@ if (!(Test-Path dictionaries)) {
9193# localization
9294Set-Location $BuildRoot
9395meson compile aegisub- gmo
96+ if (! $? ) { Exit $LASTEXITCODE }
9497
9598# Invoke InnoSetup
9699$IssUrl = Join-Path $InstallerDir " aegisub_depctrl.iss"
97100iscc $IssUrl
101+ if (! $? ) { Exit $LASTEXITCODE }
You can’t perform that action at this time.
0 commit comments