chore: list new farm on bsc (#10747) #2495
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: Farm Config | |
on: | |
push: | |
branches: | |
- develop | |
paths: | |
- 'packages/farms/constants/**' | |
- 'packages/tokens/**' | |
- '!packages/tokens/src/common.ts' | |
- '!packages/tokens/src/helpers.ts' | |
- '!packages/tokens/src/index.ts' | |
workflow_dispatch: | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
deployments: write | |
env: | |
HAVE_CLOUDFLARE_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN != '' }} | |
name: Publish Farm Config to Cloudflare Pages | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Install dependencies | |
uses: './.github/actions/install-deps' | |
- name: Build package | |
run: pnpm build:packages | |
- name: Test | |
run: pnpm test:config | |
- name: Build list | |
run: pnpm turbo run build --filter=@pancakeswap/farms | |
- name: Publish to Cloudflare Pages | |
uses: cloudflare/pages-action@1 | |
if: ${{ env.HAVE_CLOUDFLARE_TOKEN == 'true' }} | |
with: | |
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
accountId: b82548875bdb333ff5edcca4d076f88d | |
projectName: farms-config | |
directory: ./packages/farms/lists | |
gitHubToken: ${{ secrets.GITHUB_TOKEN }} | |
branch: ${{ github.ref_name == 'develop' && 'main' || null }} |