26 lines
518 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: build and test
image: python:3.9-slim
commands:
- pip install --no-cache-dir -r requirements.tx
- name: deploy
image: python:3.9-slim
when:
status: success
commands:
- echo "Deploying app to production..."
- python app.py & # Run Flask app in background
secrets: [ eins ] # Use secrets to securely store deployment credentials
trigger:
branch:
- master
event:
- promote
target:
- production