2.0 Refactor #1

Merged
joe merged 11 commits from ci into master 2022-09-25 17:52:41 +00:00
1 changed files with 19 additions and 3 deletions
Showing only changes of commit c6f13745e9 - Show all commits

View File

@ -2,6 +2,22 @@ kind: pipeline
steps:
- name: build
image: plugins/hugo
settings:
hugo_version: 0.55
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;