From c7b8ec8c9f4008665c1a6fba195358fb3c220fcc Mon Sep 17 00:00:00 2001 From: UncleGedd <42304551+UncleGedd@users.noreply.github.com> Date: Fri, 20 Sep 2024 15:00:20 -0500 Subject: [PATCH] fix: ensure runtime bins are included in releases (#939) --- .github/workflows/release.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 07e691d9..62e66cd2 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -50,6 +50,13 @@ jobs: owner: defenseunicorns repositories: homebrew-tap + - name: Download Runtime binaries for embedding + run: | + ./hack/update-uds-runtime-binaries.sh uds-runtime-linux-amd64 + ./hack/update-uds-runtime-binaries.sh uds-runtime-linux-arm64 + ./hack/update-uds-runtime-binaries.sh uds-runtime-darwin-amd64 + ./hack/update-uds-runtime-binaries.sh uds-runtime-darwin-arm64 + - name: Run GoReleaser uses: goreleaser/goreleaser-action@286f3b13b1b49da4ac219696163fb8c1c93e1200 # v6.0.0 with: