Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/python-nbxmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hörist <philipp@hoerist.com>2023-01-23 23:09:21 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-01-23 23:09:21 +0300
commitbd56d650a26c6ad4ba55c961e9a09df2ab73b918 (patch)
tree72f8edfa02d5e8d2315b644cc1debb4dd6672a61 /.gitlab-ci.yml
parenta81d3d88bd2c9a817402a6c85cbda8a2aa97ecbd (diff)
ci: Use dedicated image for deploy stage
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index db2aeda..79a4904 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -38,23 +38,23 @@ build-linux:
- debian_build/*
deploy-pypi:
+ image: nbxmpp-deploy:latest
stage: deploy
dependencies:
- "build-linux"
rules:
- if: '$CI_COMMIT_TAG'
script:
- - python3 .ci/deploy.py
- twine upload --username=__token__ --password=$PYPI_TOKEN dist/*
deploy-debian:
+ image: nbxmpp-deploy:latest
stage: deploy
dependencies:
- build-linux
rules:
- if: '$NIGHTLY_BUILD'
script:
- - pip install git+https://dev.gajim.org/gajim/release-helper.git
- >
release-helper deploy-to-ftp \
--host=$FTP_HOST \