diff --git a/.circleci/config.yml b/.circleci/config.yml index 840df61..46b8b30 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,7 +4,7 @@ jobs: environment: HUGO_BUILD_DIR: ~/project/public docker: - - image: felicianotech/docker-hugo:0.40 + - image: cibuilds/hugo:0.88.1 working_directory: ~/project steps: - checkout @@ -12,11 +12,11 @@ jobs: name: "Run Hugo" command: HUGO_ENV=production hugo --theme=phillycocoaheadtheme -v -d $HUGO_BUILD_DIR - run: - name: "Install PIP" - command: apk add --update python python-dev py-pip + name: "Update apt-get" + command: sudo apt-get update - run: name: "Install AWS" - command: pip install awscli + command: sudo apt-get install awscli; aws --version - run: name: "Deploy to S3 if tests pass and branch is Master" - command: aws s3 sync $HUGO_BUILD_DIR s3://phillycocoa.org \ No newline at end of file + command: aws s3 sync $HUGO_BUILD_DIR s3://phillycocoa.org