Skip to content
Snippets Groups Projects

Publish pressure-vessel releases, separate from scout releases

Merged Simon McVittie requested to merge wip/t28526 into master
Compare and Show latest version
2 files
+ 41
10
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 6
5
@@ -57,7 +57,7 @@ variables:
PRESSURE_VESSEL_CI_UPLOAD_PATH: ''
PRESSURE_VESSEL_CI_UPLOAD_PLAYGROUND_PATH: ''
PRESSURE_VESSEL_CI_UPLOAD_USER: ''
PRESSURE_VESSEL_CI_UPLOAD_SSH_PRIVATE_KEY: ''
PRESSURE_VESSEL_CI_UPLOAD_SSH_PRIVATE_KEY_FILE: ''
stages:
- build
@@ -475,7 +475,9 @@ deploy:
when: never
- if: '$CI_COMMIT_TAG && $PRESSURE_VESSEL_CI_UPLOAD_PATH == ""'
when: never
- if: '$PRESSURE_VESSEL_CI_UPLOAD_PATH == "" && PRESSURE_VESSEL_CI_UPLOAD_PLAYGROUND_PATH == ""'
- if: >-
$PRESSURE_VESSEL_CI_UPLOAD_PATH == ""
&& $PRESSURE_VESSEL_CI_UPLOAD_PLAYGROUND_PATH == ""
when: never
- if: '$PRESSURE_VESSEL_CI_UPLOAD_USER == ""'
when: never
@@ -483,10 +485,10 @@ deploy:
when: never
- if: '$CI_COMMIT_TAG'
when: always
- when: manual
- when: always
image: "${DEVEL_DOCKER_REGISTRY}/${DEVEL_DOCKER_IMAGE}"
variables:
- STEAM_CI_DEPENDENCIES: >-
STEAM_CI_DEPENDENCIES: >-
openssh-client
script:
- |
@@ -494,7 +496,6 @@ deploy:
chmod 0700 ~/.ssh
cat "$PRESSURE_VESSEL_CI_UPLOAD_HOST_SSH_PUBLIC_KEYS_FILE" >> ~/.ssh/known_hosts
chmod 0644 ~/.ssh/known_hosts
eval "$(ssh-agent -s)"
tr -d '\r' < "$PRESSURE_VESSEL_CI_UPLOAD_SSH_PRIVATE_KEY_FILE" | ssh-add -
if [ -n "${CI_COMMIT_TAG-}" ]; then
Loading