From 63fb839378624f6419032fb1020590ea163d9af3 Mon Sep 17 00:00:00 2001 From: Tarrence van As Date: Mon, 20 Nov 2023 21:40:42 -0500 Subject: [PATCH] Scope upload artifacts --- .github/workflows/release.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 82f1a1e26c..df726fb4bd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -192,11 +192,18 @@ jobs: files: | ${{ steps.artifacts.outputs.file_name }} + # Upload these for use with the Docker build later - name: Upload binaries uses: actions/upload-artifact@v2 with: name: binaries - path: target/ + path: | + target/x86_64-unknown-linux-gnu/release/katana + target/x86_64-unknown-linux-gnu/release/sozo + target/x86_64-unknown-linux-gnu/release/torii + target/aarch64-unknown-linux-gnu/release/katana + target/aarch64-unknown-linux-gnu/release/sozo + target/aarch64-unknown-linux-gnu/release/torii retention-days: 1 cleanup: