Skip to content

Commit

Permalink
feat: add clear cache for publish action (#2129)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexVarchuk authored Aug 18, 2022
1 parent 7816902 commit d8093e3
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,3 +92,23 @@ jobs:
uses: actions/download-artifact@v3
- name: Publish to S3
run: npm run publish-cdn

invalidate-cache:
name: Clear cache
runs-on: ubuntu-latest
needs: [check-version, publish-npm, publish-cli-s3, publish-cdn]
if: needs.check-version.outputs.changed == 'true'
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Configure AWS
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: us-east-1
- name: Invalidate cache
run: ./scripts/invalidate-cache.sh
shell: bash
env:
DISTRIBUTION: ${{ secrets.DISTRIBUTION }}
24 changes: 24 additions & 0 deletions scripts/invalidate-cache.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#!/usr/bin/env bash

set -e # exit on error

echo jsdelivr clearing cache
curl -i -X POST https://purge.jsdelivr.net/ \
-H 'cache-control: no-cache' \
-H 'content-type: application/json' \
-d '{
"path": [
"npm/redoc@latest/bundles/redoc.browser.lib.js",
"npm/redoc@latest/bundles/redoc.lib.js",
"npm/redoc@latest/bundles/redoc.standalone.js"
]
}'

echo
echo start invalidate cloudfront

aws cloudfront create-invalidation --distribution-id $DISTRIBUTION --paths "/redoc/*"

echo Cache cleared successfully

exit 0

0 comments on commit d8093e3

Please sign in to comment.