mirror of
https://github.com/softinio/softinio.com.git
synced 2025-09-03 10:36:42 -07:00
Upgrade to circlci
This commit is contained in:
parent
b5b61d2f3a
commit
a8e8c96f8b
2 changed files with 22 additions and 15 deletions
22
.circleci/config.yml
Normal file
22
.circleci/config.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
version: 2
|
||||
jobs:
|
||||
build:
|
||||
docker:
|
||||
- image: softinio/hugo-docker:latest
|
||||
working_directory: ~/hugo
|
||||
environment:
|
||||
HUGO_BUILD_DIR: ~/hugo/public
|
||||
steps:
|
||||
- checkout
|
||||
- run: git submodule sync && git submodule update --init
|
||||
- run: hugo -v -d $HUGO_BUILD_DIR
|
||||
- deploy:
|
||||
name: deploy to AWS
|
||||
command: |
|
||||
if [ "${CIRCLE_BRANCH}" = "master" ]; then
|
||||
aws s3 sync $HUGO_BUILD_DIR s3://$AWS_BUCKET --delete
|
||||
aws cloudfront create-invalidation --distribution-id $CLOUDFRONT_DISTRIBUTION_ID --paths "/*"
|
||||
else
|
||||
echo "Not master branch, dry run only"
|
||||
fi
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue