Skip to content

Commit

Permalink
Include rc image builds without latest tag
Browse files Browse the repository at this point in the history
  • Loading branch information
zanieb committed Jan 25, 2022
1 parent bbb6f00 commit de37477
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -407,6 +407,7 @@ jobs:
command: |
docker login --username $DOCKER_HUB_USER --password $DOCKER_HUB_PW
docker push prefecthq/prefect:master
build_core_docker_image:
docker:
- image: docker
Expand Down Expand Up @@ -595,3 +596,43 @@ workflows:
ignore: /.*/
tags:
only: /^[0-9]+\.[0-9]+\.[0-9]+$/

# RC -----

- build_docker_image:
python_version: '3.7'
extras: 'all_orchestration_extras'
filters:
branches:
ignore: /.*/
tags:
only: /^1.0rc[0-9]$/
- build_docker_image:
python_version: '3.8'
extras: 'all_orchestration_extras'
filters:
branches:
ignore: /.*/
tags:
only: /^1.0rc[0-9]$/
- build_docker_image:
python_version: '3.9'
extras: 'all_orchestration_extras'
filters:
branches:
ignore: /.*/
tags:
only: /^1.0rc[0-9]$/
- release_to_pypi:
filters:
branches:
ignore: /.*/
tags:
only: /^1.0rc[0-9]$/
- build_core_docker_image:
python_version: '3.9'
filters:
branches:
ignore: /.*/
tags:
only: /^1.0rc[0-9]$/

0 comments on commit de37477

Please sign in to comment.