Skip to content
Snippets Groups Projects
Commit 12c83ba3 authored by jurgenhaas's avatar jurgenhaas
Browse files

Add drupal-deploy-ng task template

parent d39c4d2a
No related branches found
No related tags found
No related merge requests found
......@@ -42,5 +42,8 @@ Build Theme:
Deploy:
extends: '.deployartefact'
DeployNG:
extends: '.deployartefact-ng'
Reset Locales:
extends: '.resetlocales'
......@@ -349,6 +349,7 @@ Debug:
cache: {}
rules:
- if: '$DISABLE_DEPLOYMENT != "1"'
- if: '$DISABLE_DEPLOYMENT_REMOTE != "1"'
dependencies:
- 'Build Theme'
......@@ -366,6 +367,27 @@ Debug:
cache: {}
rules:
- if: '$DISABLE_DEPLOYMENT != "1"'
- if: '$DISABLE_DEPLOYMENT_REMOTE != "1"'
dependencies:
- 'Build Prod Site'
- 'Build Theme'
.deployartefact-ng:
stage: deploy
tags:
- ansiblelocal
image: registry.lakedrops.com/ansible-inventories/localhost:latest
variables:
GIT_STRATEGY: none
environment:
name: ${ENVIRONMENT_NAME}
url: ${ENVIRONMENT_URL}
script:
- ascr drupal-deploy-ng ${CI_PROJECT_ID} ${CI_PROJECT_PATH_SLUG} ${CI_COMMIT_BRANCH} --extra-vars="DRUPAL_ARTEFACT_SRC=${PWD}" --extra-vars="SKIP_CONFIG_IMPORT=${SKIPCONFIGIMPORT}" ${CAE}
cache: {}
rules:
- if: '$DISABLE_DEPLOYMENT != "1"'
- if: '$DISABLE_DEPLOYMENT_REMOTE != "0"'
dependencies:
- 'Build Prod Site'
- 'Build Theme'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment