diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4dfb8981..89413038 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -66,6 +66,7 @@ jobs: fi - name: Build & lint all apps + id: build-all if: steps.changed-files.outputs.all_changed_and_modified_files == '' run: | BUILD_FAILED=0 @@ -88,11 +89,13 @@ jobs: fi - name: Gather build artifacts + if: steps.build-all.conclusion == 'success' run: | mkdir -p dist cp -v $( find . -name '*.fap' ) dist/ - name: Upload all .fap files + if: steps.build-all.conclusion == 'success' uses: actions/upload-artifact@v4 with: name: faps