Files
ent/.github/workflows/cd.yml
dependabot[bot] b759fd2e0b build(deps): bump actions/checkout from 2 to 2.3.4 (#1557)
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 2.3.4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2...v2.3.4)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-05-16 10:49:06 +03:00

44 lines
1.3 KiB
YAML

name: Continuous Deployment
on:
push:
branches:
- master
paths:
- 'doc/**'
schedule:
- cron: "0 9 * * 0-5"
jobs:
docs:
name: docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/setup-node@v2.1.5
with:
node-version: 14
- name: Install Dependencies
working-directory: doc/website
run: yarn
- name: Sync Translation
working-directory: doc/website
run: yarn crowdin:sync
env:
CROWDIN_TOKEN: ${{ secrets.CROWDIN_TOKEN }}
- name: Build Docs
working-directory: doc/website
run: yarn build
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1.5.9
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: eu-central-1
- name: Deploy Docs
working-directory: doc/website/build
run: aws s3 sync . s3://entgoio --delete --exclude "images/*"
- name: Invalidate Cache
env:
CDN_DISTRIBUTION_ID: ${{ secrets.CDN_DISTRIBUTION_ID }}
run: aws cloudfront create-invalidation --distribution-id $CDN_DISTRIBUTION_ID --paths "/*" | jq -M "del(.Location)"