fix: clean no-credit-card copy in CTA footer

This commit is contained in:
2026-05-03 03:29:35 +02:00
parent 0d18d3b526
commit e04b5dd8b4
2 changed files with 173 additions and 0 deletions

13
Jenkinsfile vendored
View File

@@ -178,6 +178,19 @@ PY
'''
}
}
stage('Fix No Credit Card Copy') {
agent { label 'built-in' }
options {
timeout(time: 5, unit: 'MINUTES')
}
steps {
sh '''
set -e
REMOTE_CMD="cd '${STAGING_AUDIT_PROJECT_DIR}' && '${STAGING_AUDIT_MANAGE}' fix_no_credit_card_text --apply"
sudo -n -u mandel -g www-data /srv/apps/mandel-dashboard/.venv/bin/python /srv/apps/mandel-dashboard/bin/deploy_stg_from_jenkins.py "${STAGING_AUDIT_PROJECT_NAME}" --command "$REMOTE_CMD"
'''
}
}
stage('Recompress Staging Assets') {
agent { label 'built-in' }
options {