Compare commits
9 Commits
firstRelea
...
master
Author | SHA1 | Date | |
---|---|---|---|
13e5118dba | |||
7134658f85 | |||
8ddf383725 | |||
3cdcf7ed67 | |||
57b899f315 | |||
99f72e0107 | |||
a979a72a65 | |||
4474be0abc | |||
832df8a9e1 |
26
.drone.yml
Normal file
26
.drone.yml
Normal file
@ -0,0 +1,26 @@
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: default
|
||||
|
||||
steps:
|
||||
- name: build and test
|
||||
image: python:3.9-slim
|
||||
commands:
|
||||
- pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
- 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
|
Loading…
x
Reference in New Issue
Block a user