Files
ent/.github/workflows/cd.yml
dependabot[bot] 8753baae78 build(deps): bump actions/checkout from 2.4.0 to 3 (#2372)
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.4.0 to 3.
- [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.4.0...v3)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

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

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-03-03 18:37:58 +02: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@v3
- uses: actions/setup-node@v3
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.6.1
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)"