Skip to content

test: trigger fresh tinybird deploy #14

test: trigger fresh tinybird deploy

test: trigger fresh tinybird deploy #14

Workflow file for this run

name: Tinybird - CD Workflow
on:
push:
branches:
- main
- master
paths:
- 'packages/tinybird/**'
concurrency: ${{ github.workflow }}-${{ github.event.ref }}
env:
TINYBIRD_HOST: ${{ secrets.TINYBIRD_HOST }}
TINYBIRD_TOKEN: ${{ secrets.TINYBIRD_TOKEN }}
jobs:
cd:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Tinybird CLI
run: curl https://tinybird.co | sh
- name: Deploy project
run: |
export PATH="/home/runner/.local/bin:$PATH"
tb --cloud --host ${{ env.TINYBIRD_HOST }} --token ${{ env.TINYBIRD_TOKEN }} deploy --path packages/tinybird --max-depth 5