2
0
mirror of https://github.com/offen/website.git synced 2024-10-18 12:10:25 +02:00
website/.circleci/config.yml

62 lines
1.6 KiB
YAML
Raw Normal View History

2020-05-02 11:25:57 +02:00
version: 2.1
2019-04-11 15:48:36 +02:00
2019-04-10 18:17:24 +02:00
jobs:
deploy:
2019-07-25 16:14:37 +02:00
docker:
2021-03-05 19:21:55 +01:00
- image: cimg/base:2021.03
2020-09-27 13:00:14 +02:00
working_directory: ~/website
2019-07-25 16:14:37 +02:00
steps:
2019-09-09 20:01:22 +02:00
- checkout
- setup_remote_docker
2020-09-27 13:00:14 +02:00
- install_mc
- run:
name: Set build environment depending on branch
command: |
if [ "${CIRCLE_BRANCH}" == "master" ]; then
cat >> $BASH_ENV \<< EOF
export SITEURL="https://www.offen.dev"
2020-09-27 13:00:14 +02:00
export BUCKET="web-production"
export ROBOTS_FILE="robots.txt.production"
export OFFEN_ACCOUNT_ID="5ec8345a-2a45-4eb9-92e5-8d9e5684db58"
EOF
else
cat >> $BASH_ENV \<< EOF
export SITEURL="https://staging.offen.dev"
2020-09-27 13:00:14 +02:00
export BUCKET="web-staging"
export ROBOTS_FILE="robots.txt.staging"
export OFFEN_ACCOUNT_ID="8f7ee44a-4cd8-47f2-a77e-8c7c98d46b89"
EOF
fi
- run:
name: Build
command: make build
- run:
2020-09-27 13:00:14 +02:00
name: Deploy to Storage
command: |
2020-09-27 13:00:14 +02:00
mc mirror --remove --overwrite ./output/ offen/$BUCKET
2019-07-25 16:14:37 +02:00
2019-04-11 15:48:36 +02:00
workflows:
version: 2
2019-10-08 19:46:02 +02:00
build_deploy:
2019-04-11 15:48:36 +02:00
jobs:
2019-09-09 20:01:22 +02:00
- deploy:
2020-09-27 13:00:14 +02:00
context: Storage
filters:
branches:
only:
- master
- development
2020-05-02 11:25:57 +02:00
2020-09-27 13:00:14 +02:00
commands:
install_mc:
description: Install MinIO client
steps:
- run:
name: Download client
working_directory: '~'
command: |
curl https://dl.min.io/client/mc/release/linux-amd64/mc -o mc
chmod +x mc
sudo mv mc /usr/local/bin/mc
command -v mc