Skip to content

izackwu/tencent-cloud-cdn-purge-cache

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tencent Cloud CDN Purge Cache

This action purges cache for Tencent Cloud CDN via its Python SDK API.

Environment Variables

To use this Github action, you need to set the following environment variables in your workflow:

Name Description Required
SECRET_ID your Tencent Cloud access token Secret ID Yes
SECRET_KEY your Tencent Cloud access token Secret Key Yes
PATHS paths to purge cache for, separated with comma , Yes
FLUSH_TYPE flush (default) to purge only modified resources or delete to purge all No

Example Usage

uses: keithnull/[email protected]
env:
  SECRET_ID: ${{ secrets.SECRET_ID}}
  SECRET_KEY: ${{ secrets.SECRET_KEY }}
  PATHS: "https://example.com/foo/,https://example.com/bar/"
  FLUSH_TYPE: "flush" # optional