We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e72a582 commit ac891a4Copy full SHA for ac891a4
.github/workflows/release.yml
@@ -61,4 +61,21 @@ jobs:
61
git add .
62
git commit -m "chore(): update package lock files"
63
git push
64
+ # Purge the JSDeliver CDN cache so
65
+ # component playgrounds always load
66
+ # the latest version of Ionic.
67
+ - name: Purge JSDelivr Cache
68
+ run: |
69
+ curl -X POST \
70
+ https://purge.jsdelivr.net/ \
71
+ -H 'cache-control: no-cache' \
72
+ -H 'content-type: application/json' \
73
+ -d '{
74
+ "path": [
75
+ "/npm/@ionic/core@6/dist/ionic/ionic.esm.js",
76
+ "/npm/@ionic/core@latest/dist/ionic/ionic.esm.js",
77
+ "/npm/@ionic/core@6/css/ionic.bundle.css,
78
+ "/npm/@ionic/core@latest/css/ionic.bundle.css
79
+ ]}'
80
+
81
0 commit comments