Skip to content

Commit

Permalink
beta deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
hotlong committed Nov 16, 2023
1 parent b9fa300 commit cc3bd37
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/beta.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Deploy Docusaurus to AWS S3

on:
push:
branches:
- 'beta'

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-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 "/*"

0 comments on commit cc3bd37

Please sign in to comment.