Purge jsDelivr cache
This GitHub action allows purge file cache on jsDelivr CDN side.
Note
To avoid throttling errors, please use this action with caution and only when necessary.
jobs:
purge-jsdelivr-cache:
runs-on: ubuntu-latest
steps:
- uses: gacts/purge-jsdelivr-cache@v1
with:
url: |
https://cdn.jsdelivr.net/npm/jquery@3.2.0/dist/jquery.js
https://cdn.jsdelivr.net/npm/jquery@3.3.0/dist/jquery.min.js
The following inputs can be used as step.with
keys:
Name | Type | Default | Required | Description |
---|---|---|---|---|
url |
string or list |
yes | URLs for the cache purging | |
attempts |
number |
3 | no | Retry attempts (on the request failing) |
To release a new version:
- Build the action distribution (
make build
ornpm run build
). - Commit and push changes (including
dist
directory changes - this is important) to themaster|main
branch. - Publish the new release using the repo releases page (the git tag should follow the
vX.Y.Z
format).
Major and minor git tags (v1
and v1.2
if you publish a v1.2.Z
release) will be updated automatically.
Tip
Use Dependabot to keep this action updated in your repository.
If you find any errors in the action, please create an issue in this repository.
This is open-source software licensed under the MIT License.