From e90c370e73ef0ffcea0cdf022085d4d44d383668 Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Tue, 6 Dec 2022 09:12:09 -0600 Subject: [PATCH] Add secrets on build stages --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0579a18f..8653efa9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -31,6 +31,7 @@ twblue32: - cd ..\src - '&$env:PYTHON ..\doc\generator.py' - '&$env:PYTHON write_version_data.py' + - New-Item "appkeys.py" -ItemType File -Value "twitter_api_key='$TWITTER_API_KEY'`ntwitter_api_secret='$TWITTER_API_SECRET'" - '&$env:PYTHON setup.py build' - cd .. - mkdir artifacts @@ -70,6 +71,7 @@ twblue64: - cd ..\src - '&$env:PYTHON ..\doc\generator.py' - '&$env:PYTHON write_version_data.py' + - New-Item "appkeys.py" -ItemType File -Value "twitter_api_key='$TWITTER_API_KEY'`ntwitter_api_secret='$TWITTER_API_SECRET'" - '&$env:PYTHON setup.py build' - cd .. - mkdir artifacts