Add staging deployment
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
535bc83ea3
commit
18a7ff2d31
19
.drone.yml
19
.drone.yml
|
@ -27,3 +27,22 @@ steps:
|
||||||
- 'curl -X DELETE -H "AccessKey: $PASSWORD" https://storage.bunnycdn.com/vcinemaapp/'
|
- 'curl -X DELETE -H "AccessKey: $PASSWORD" https://storage.bunnycdn.com/vcinemaapp/'
|
||||||
- 'lftp -e "mirror -P 10 -R" -u $USERNAME,$PASSWORD storage.bunnycdn.com'
|
- 'lftp -e "mirror -P 10 -R" -u $USERNAME,$PASSWORD storage.bunnycdn.com'
|
||||||
- 'curl -X POST -H "AccessKey: $APIKEY" https://bunnycdn.com/api/pullzone/233440/purgeCache --data ""'
|
- 'curl -X POST -H "AccessKey: $APIKEY" https://bunnycdn.com/api/pullzone/233440/purgeCache --data ""'
|
||||||
|
|
||||||
|
- name: deploy-staging
|
||||||
|
image: alpine
|
||||||
|
when:
|
||||||
|
branch:
|
||||||
|
- develop
|
||||||
|
environment:
|
||||||
|
USERNAME:
|
||||||
|
from_secret: staging_ftp_username
|
||||||
|
PASSWORD:
|
||||||
|
from_secret: staging_ftp_password
|
||||||
|
APIKEY:
|
||||||
|
from_secret: api_key
|
||||||
|
commands:
|
||||||
|
- apk --no-cache add lftp curl
|
||||||
|
- cd dist
|
||||||
|
- 'curl -X DELETE -H "AccessKey: $PASSWORD" https://storage.bunnycdn.com/vcinemaapp/'
|
||||||
|
- 'lftp -e "mirror -P 10 -R" -u $USERNAME,$PASSWORD storage.bunnycdn.com'
|
||||||
|
- 'curl -X POST -H "AccessKey: $APIKEY" https://bunnycdn.com/api/pullzone/244774/purgeCache --data ""'
|
||||||
|
|
Loading…
Reference in New Issue