mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-23 17:13:44 +03:00
feat: add clear cache for publish action (#2129)
This commit is contained in:
parent
781690284a
commit
d8093e3e20
20
.github/workflows/publish.yml
vendored
20
.github/workflows/publish.yml
vendored
|
@ -92,3 +92,23 @@ jobs:
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v3
|
||||||
- name: Publish to S3
|
- name: Publish to S3
|
||||||
run: npm run publish-cdn
|
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
scripts/invalidate-cache.sh
Executable file
24
scripts/invalidate-cache.sh
Executable file
|
@ -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
|
Loading…
Reference in New Issue
Block a user