refactor(loaders): extract bounded retry/budget pattern into base.py #1
This file contains hidden or 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: Deploy Wiki | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "wiki/**" | |
| - ".github/workflows/wiki-deploy.yml" | |
| concurrency: | |
| group: wiki-deploy | |
| cancel-in-progress: true | |
| jobs: | |
| deploy: | |
| name: Deploy to Cloudflare Pages | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| deployments: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Deploy wiki | |
| uses: cloudflare/wrangler-action@v3 | |
| with: | |
| apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
| accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
| command: pages deploy wiki --project-name=vibetrading-wiki --branch=main | |
| gitHubToken: ${{ secrets.GITHUB_TOKEN }} |