From 6455e759e3d0db6d0ab9ec038501aa57411c8f9e Mon Sep 17 00:00:00 2001 From: Ian Davis Date: Mon, 28 Nov 2022 19:54:07 +0000 Subject: [PATCH] Rely on local env varibale instead of context We have this env varible set in the project settings as well as the CircleCI context. Due to what seems like a bug on CircleCI's eng, the using the context causes our release flow to halt when some member of the team initiate releases, but not others. So for now, it's safest to rely on the project settings, which definitely won't cause this issue. --- .circleci/config.yml | 4 ---- .circleci/template.yml | 4 ---- 2 files changed, 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 082580469..8c68fd09b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1021,8 +1021,6 @@ workflows: - /^v\d+\.\d+\.\d+(-rc\d+)?$/ - release: name: "Release" - context: - - filecoin-goreleaser-key requires: - "Build ( darwin / amd64 )" - "Build ( linux / amd64 )" @@ -1036,8 +1034,6 @@ workflows: - /^v\d+\.\d+\.\d+(-rc\d+)?$/ - release: name: "Release (dry-run)" - context: - - filecoin-goreleaser-key dry-run: true requires: - "Build ( darwin / amd64 )" diff --git a/.circleci/template.yml b/.circleci/template.yml index 520a0cc7f..0a332964b 100644 --- a/.circleci/template.yml +++ b/.circleci/template.yml @@ -716,8 +716,6 @@ workflows: - /^v\d+\.\d+\.\d+(-rc\d+)?$/ - release: name: "Release" - context: - - filecoin-goreleaser-key requires: - "Build ( darwin / amd64 )" - "Build ( linux / amd64 )" @@ -731,8 +729,6 @@ workflows: - /^v\d+\.\d+\.\d+(-rc\d+)?$/ - release: name: "Release (dry-run)" - context: - - filecoin-goreleaser-key dry-run: true requires: - "Build ( darwin / amd64 )"