From 4b0db772b64e064d17d9f566414bcd35c1e0fced Mon Sep 17 00:00:00 2001 From: Eugene Yokota Date: Sun, 5 Nov 2023 04:48:13 -0500 Subject: [PATCH] Fail fast on missing --- .github/workflows/native.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/native.yml b/.github/workflows/native.yml index 0d5dbc6..3e9e11f 100644 --- a/.github/workflows/native.yml +++ b/.github/workflows/native.yml @@ -91,7 +91,9 @@ jobs: mkdir -p target/bin/ curl -L "https://github.com/sbt/sbtn-dist/releases/download/${{ github.event.release.tag_name }}/sbtn-aarch64-apple-darwin" \ --header "Authorization: token $GITHUB_TOKEN" \ - --output target/bin/sbtn-aarch64-apple-darwin + --output target/bin/sbtn-aarch64-apple-darwin \ + --fail + ls target/bin/sbtn-aarch64-apple-darwin sbt clean nativeImage lipo -create -o target/bin/sbtn "client/target/bin/sbtn" "target/bin/sbtn-aarch64-apple-darwin" - name: Build