整理apps #86
Workflow file for this run
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 Docusaurus to AWS S3 | |
on: | |
push: | |
tags: # Deploy tag (e.g. v1.0) to production | |
- 'v**' | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: npm install | |
- name: Build Docusaurus site | |
run: npm run build | |
- 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-steedos-com | |
AWS_S3_REGION: cn-northwest-1 | |
SOURCE_DIR: ./build/ | |
- name: Invalidate CloudFront distribution | |
run: | | |
aws cloudfront create-invalidation --distribution-id E3PZXWVY8YMW6P --paths "/*" |