Skip to content

bruh

bruh #3

Workflow file for this run

name: Tinybird CD

Check failure on line 1 in .github/workflows/tinybird-cd.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/tinybird-cd.yml

Invalid workflow file

(Line: 34, Col: 9): Unexpected value 'run', (Line: 30, Col: 9): Required property is missing: uses
on:
workflow_dispatch:
push:
branches:
- main
- master
paths:
- 'tinybird/**'
concurrency: ${{ github.workflow }}-${{ github.event.ref }}
permissions:
contents: read
jobs:
cd:
name: Deploy
runs-on: ubuntu-latest
defaults:
run:
working-directory: 'tinybird'
steps:
- uses: actions/checkout@v3
- name: Install Tinybird CLI
run: curl https://tinybird.co | sh
- name: Deploy project
with:
TINYBIRD_HOST: ${{ secrets.TINYBIRD_HOST }}
TINYBIRD_TOKEN: ${{ secrets.TINYBIRD_TOKEN }}
run: tb --cloud --host "${{ env.TINYBIRD_HOST }}" --token "${{ env.TINYBIRD_TOKEN }}" deploy