diff --git a/.circleci/config.yml b/.circleci/config.yml index 0cd964f03..ffabab7ad 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,14 +2,6 @@ version: 2.1 setup: true orbs: continuation: circleci/continuation@0.2.0 - -aliases: - only-version-tags: &only-version-tags - tags: - only: /^v[0-9].*/ - branches: - ignore: /.*/ - jobs: generate-params: executor: continuation/default @@ -43,9 +35,3 @@ workflows: setup-workflow: jobs: - generate-params - - # NOTE: CircleCI only builds tags if you explicitly filter for them. - setup-workflow-tag: - jobs: - - generate-params: - filters: *only-version-tags diff --git a/.circleci/main.yml b/.circleci/main.yml index 2f1fcc16d..f91814ee9 100644 --- a/.circleci/main.yml +++ b/.circleci/main.yml @@ -442,6 +442,7 @@ workflows: # the bifrost-* branches are used for deploying code that hasn't hit master yet (e.g. for testing) - /^bifrost-.*/ + # NOTE: CircleCI only builds tags if you explicitly filter for them. That # also means tag-based jobs can only depend on other tag-based jobs, so we # use a separate workflow because every job needs to be tagged together.