mirror of
https://github.com/softinio/softinio.com.git
synced 2025-09-06 03:36:41 -07:00
19 lines
399 B
YAML
19 lines
399 B
YAML
# .gitlab-ci.yml
|
|
image: publysher/hugo
|
|
|
|
production:
|
|
type: deploy
|
|
before_script:
|
|
- apt-get update
|
|
- apt-get -qq install python python-pip ca-certificates
|
|
- pip install awscli
|
|
script:
|
|
- hugo
|
|
- aws s3 sync public/ s3://$AWS_BUCKET
|
|
- aws cloudfront create-invalidation --distribution-id $CLOUDFRONT_DISTRIBUTION_ID --paths "/*"
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
only:
|
|
- master
|
|
|