From 23d085d4a86272005d5d619009e558a887f9538f Mon Sep 17 00:00:00 2001 From: Mat Sutcliffe Date: Fri, 11 Sep 2020 22:20:42 +0100 Subject: [PATCH] Symbol uploads: tag each one with the swift version number This is to make them easier to recognize and manage in the Backtrace web app. --- scripts/build.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/build.py b/scripts/build.py index 5c5a93ce3..c370ca849 100644 --- a/scripts/build.py +++ b/scripts/build.py @@ -258,6 +258,7 @@ class Builder: params = ( ('format', 'symbols'), ('token', token), + ('tag', self.version), ) r = requests.post(url, params=params, data=data) r.raise_for_status()