Skip to content

docs(gha-cache-server): forked runner image #17

docs(gha-cache-server): forked runner image

docs(gha-cache-server): forked runner image #17

Workflow file for this run

name: Deploy
on:
push:
branches: [master]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: deploy
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: pnpm install
uses: falcondev-it/.github/actions/pnpm-install@master
- name: Cache turbo build setup
uses: actions/cache@v4
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ github.sha }}
restore-keys: |
${{ runner.os }}-turbo-
- name: Build & Deploy
shell: bash
run: pnpm turbo deploy --ui stream
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}