From 61baa7f7f2fd64ff7b02a71b1902a4d0442eb75f Mon Sep 17 00:00:00 2001 From: Burak Yigit Kaya Date: Tue, 15 Dec 2020 20:59:30 +0300 Subject: [PATCH] fix(release): Fix py2/py3 docker image confusion Follow up to #22470 et al. --- .craft.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.craft.yml b/.craft.yml index 317d337ae27ca0..0bdd384a4fa102 100644 --- a/.craft.yml +++ b/.craft.yml @@ -13,27 +13,27 @@ statusProvider: targets: - name: github - name: pypi - - id: py2-release + - id: py3-release name: docker source: us.gcr.io/sentryio/sentry target: getsentry/sentry - - id: py2-latest + - id: py3-latest name: docker source: us.gcr.io/sentryio/sentry target: getsentry/sentry targetFormat: '{{{target}}}:latest' - - id: py3-release + - id: py2-release name: docker source: us.gcr.io/sentryio/sentry - sourceFormat: '{{{source}}}:{{{revision}}}-py3' + sourceFormat: '{{{source}}}:{{{revision}}}-py2' target: getsentry/sentry - targetFormat: '{{{target}}}:{{{version}}}-py3' - - id: py3-latest + targetFormat: '{{{target}}}:{{{version}}}-py2' + - id: py2-latest name: docker source: us.gcr.io/sentryio/sentry - sourceFormat: '{{{source}}}:{{{revision}}}-py3' + sourceFormat: '{{{source}}}:{{{revision}}}-py2' target: getsentry/sentry - targetFormat: '{{{target}}}:latest-py3' + targetFormat: '{{{target}}}:latest-py2' requireNames: - /^sentry-.+-py2.py3-none-any.whl$/