英文网站 #32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Beta Site | |
on: | |
push: | |
branches: | |
- 'beta' | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: yarn install | |
- name: Build Docusaurus site | |
run: yarn run build | |
env: | |
SITE_URL: "https://docs-beta.steedos.com/" | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: cn-northwest-1 | |
- name: Deploy to S3 | |
uses: jakejarvis/s3-sync-action@master | |
with: | |
args: --acl public-read --follow-symlinks --delete | |
env: | |
AWS_S3_BUCKET: docs-beta-steedos-com | |
AWS_S3_REGION: cn-northwest-1 | |
SOURCE_DIR: ./build/ | |
- name: Invalidate CloudFront distribution | |
run: | | |
aws cloudfront create-invalidation --distribution-id E2L9U62R3AG98M --paths "/*" |