From c20bbd878cab03eda93eea79c0f7b3dfa464a8a0 Mon Sep 17 00:00:00 2001 From: Mathias Fredriksson Date: Tue, 2 Jul 2024 20:43:19 +0300 Subject: [PATCH] chore(.github): remove release make concurrency to fix docker image race --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 9b9e79b4f39bb..a13bbbe3fd91b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -297,7 +297,7 @@ jobs: # build Docker images for each architecture version="$(./scripts/version.sh)" - make -j build/coder_"$version"_linux_{amd64,arm64,armv7}.tag + make build/coder_"$version"_linux_{amd64,arm64,armv7}.tag # we can't build multi-arch if the images aren't pushed, so quit now # if dry-running @@ -308,7 +308,7 @@ jobs: # build and push multi-arch manifest, this depends on the other images # being pushed so will automatically push them. - make -j push/build/coder_"$version"_linux.tag + make push/build/coder_"$version"_linux.tag # if the current version is equal to the highest (according to semver) # version in the repo, also create a multi-arch image as ":latest" and