chore: fix ads #180
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
on: | |
push: | |
jobs: | |
deploy: | |
name: "Deploy v4000 Docs on Cloudflare Workers" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
fetch-tags: true | |
- name: Checkout submodule to v4000 | |
run: | | |
cd kaplay | |
git fetch --tags | |
git checkout 4000.0.0-alpha.13 | |
- name: Setup PNPM | |
uses: pnpm/action-setup@v4 | |
- name: Deploy app | |
uses: cloudflare/wrangler-action@v3 | |
with: | |
packageManager: pnpm | |
apiToken: ${{ secrets.CLOUDFLARE_WORKERS_KEY }} | |
command: pages deploy dist --project-name=kaplay4000 | |
preCommands: "pnpm i && pnpm build" | |
deploylegacy: | |
name: "Deploy v3001 Docs on Cloudflare Workers" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
fetch-tags: true | |
- name: Checkout submodule to v3001 | |
run: | | |
cd kaplay | |
git fetch --tags | |
git checkout 3001.0.2 | |
- name: Setup PNPM | |
uses: pnpm/action-setup@v4 | |
- name: Deploy app | |
uses: cloudflare/wrangler-action@v3 | |
with: | |
packageManager: pnpm | |
apiToken: ${{ secrets.CLOUDFLARE_WORKERS_KEY }} | |
command: pages deploy dist --project-name=kaplay3001 | |
preCommands: "pnpm i && pnpm build" |