Clear Publish Cache #12
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: 'Clear Publish Cache' | |
on: | |
workflow_dispatch: | |
env: | |
SL_OBS_VERSION: ${{ github.ref_name }} | |
SLGenerator: Visual Studio 17 2022 | |
AWS_RELEASE_ACCESS_KEY_ID: ${{secrets.AWS_RELEASE_ACCESS_KEY_ID}} | |
AWS_RELEASE_SECRET_ACCESS_KEY: ${{secrets.AWS_RELEASE_SECRET_ACCESS_KEY}} | |
jobs: | |
publish: | |
name: 'Publish Internal Meta' | |
runs-on: windows-latest | |
environment: Release | |
strategy: | |
matrix: | |
ReleaseName: [release] | |
include: | |
- ReleaseName: release | |
ReleaseConfig: RelWithDebInfo | |
env: | |
OS_TAG: "win64" | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install Cloudflare CLI | |
run: npm install -g cloudflare-cli | |
- name: Run script | |
env: | |
CF_API_EMAIL: ${{ secrets.CLOUDFLARE_AUTH_EMAIL }} | |
CF_API_KEY: ${{ secrets.CLOUDFLARE_AUTH_KEY }} | |
run: powershell -File ./ci/clear_publish_cache.ps1 |