From 365080f4f592c813f8ebd8bc4118802cd5d3b254 Mon Sep 17 00:00:00 2001 From: Andrew Clark Date: Thu, 4 Feb 2021 09:34:12 -0600 Subject: [PATCH] Autopublish prereleases using head of main branch Instead of using pipeline parameter. Fixes copypasta from the other workflow, which accepts the SHA parameter via an API call. --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 27e60d9a94..2e4a924d17 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -553,14 +553,14 @@ workflows: name: Publish to Next channel requires: - setup - commit_sha: << pipeline.parameters.prerelease_commit_sha >> + commit_sha: master release_channel: stable dist_tag: next - publish_prerelease: name: Publish to Experimental channel requires: - setup - commit_sha: << pipeline.parameters.prerelease_commit_sha >> + commit_sha: master release_channel: experimental dist_tag: experimental