Deployment (Prod - New Bucket) #2
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: 'Deployment (Prod - New Bucket)' | |
on: | |
#push: | |
# branches: | |
# - 'prod' | |
workflow_dispatch: | |
jobs: | |
Docusaurus: | |
name: 'Deployment' | |
runs-on: ubuntu-latest | |
environment: prod | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Find and Replace | |
uses: jacobtomlinson/gha-find-replace@master | |
with: | |
find: ${{ secrets.CDN_URL }} | |
replace: ${{ secrets.PROD_WEBSITE_URL }} | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Find and Replace | |
uses: jacobtomlinson/gha-find-replace@master | |
with: | |
find: "indexName: '${{ secrets.STAGE_INDEX }}'," | |
replace: "indexName: '${{ secrets.PROD_INDEX }}'," | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID_MKT }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY_MKT }} | |
aws-region: us-east-1 | |
- name: Use Node.js 16.14.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.14.x | |
- run: npm install --legacy-peer-deps && npm run build | |
env: | |
CI: false | |
- name: Copy files to S3 with the AWS CLI | |
run: | | |
cp -R assets/ build/ | |
cd build/ | |
aws s3 sync . s3://lambdatest-prod-docs/support-temp/ --exclude 'robots.txt' --delete | |
- name: Cloudflare Invalidation | |
run: | | |
curl -X POST "https://api.cloudflare.com/client/v4/zones/${{ secrets.CLOUDFLARE_ZONE_ID }}/purge_cache" -H "X-Auth-Email: [email protected]" -H "X-Auth-Key: ${{ secrets.CF_API_SECRET }}" -H "Content-Type: application/json" --data '{"hosts":["${{ secrets.PROD_WEBSITE_URL }}"] }' | |