(geek-rabbit) fix web player bugs #65
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Purge CDN Cache | |
on: [push] | |
jobs: | |
build-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: Install tencentcloud-sdk-python | |
run: | | |
pip install tencentcloud-sdk-python | |
- name: Purge CDN Cache | |
env: | |
SecretId: ${{ secrets.SecretId }} | |
SecretKey: ${{ secrets.SecretKey }} | |
run: | | |
python .github/cdn.py | |