From cf605977bfc2b3762d7669f2a409b4a0a7c8e903 Mon Sep 17 00:00:00 2001 From: Matt Kantor Date: Wed, 6 Jan 2021 10:26:32 -0800 Subject: [PATCH] Include CPU architecture in built artifact names. Apple's new M1 architecture made me realize I wasn't providing enough platform information for build artifacts. I really should have been doing this from the start ("operator-linux.tar.gz" wasn't specific enough either). The Operator website needs some updates too. First of all to refer to the new artifact names, but also the requisite architecture should be clearly called out in the install instructions. --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index eca9c83..84b25b6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -53,10 +53,10 @@ jobs: - macos-latest include: - os: macos-latest - artifact_prefix: macos + artifact_prefix: macos-x86-64 target: x86_64-apple-darwin - os: ubuntu-latest - artifact_prefix: linux + artifact_prefix: linux-x86-64 target: x86_64-unknown-linux-gnu steps: - uses: actions/checkout@v2