Compare commits

...

2 Commits

Author SHA1 Message Date
Joe Bellus c6f13745e9 Using standard images
continuous-integration/drone/push Build encountered an error Details
2022-09-25 03:34:38 -04:00
Joe Bellus b2fbf96f97 Removed hugo validate 2022-09-25 03:28:24 -04:00
1 changed files with 19 additions and 4 deletions

View File

@ -2,7 +2,22 @@ kind: pipeline
steps:
- name: build
image: plugins/hugo
settings:
hugo_version: 0.55
validate: true
image: hugo:latest
volumes:
- name: dist
path: dist/
commands:
- hugo
- name: deploy
image: amazon/aws-cli
environment:
AWS_ACCESS_KEY_ID: $AWS_ACCESS_KEY
AWS_DEFAULT_REGION: us-east-1
AWS_SECRET_ACCESS_KEY: $AWS_SECRET
volumes:
- name: dist
path: dist/
commands:
- hugo
- aws s3 sync ./dist s3://conductor.5sigma.io --delete;