Skip to content

Commit

Permalink
Merge branch 'main' into test-move-data
Browse files Browse the repository at this point in the history
  • Loading branch information
gnzjgo authored Jan 8, 2024
2 parents 160b754 + 3236a05 commit daa0742
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 1 deletion.
25 changes: 25 additions & 0 deletions .github/workflows/tinybird_cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

##################################################
### Visit https://github.com/tinybirdco/ci ###
### for more details or custom CI/CD ###
##################################################

name: Tinybird - CD Workflow

on:
workflow_dispatch:
push:
branches:
- main
- master
paths:
- '*'
jobs:
cd:
uses: tinybirdco/ci/.github/workflows/cd.yml@main
with:
tb_deploy: true
data_project_dir: .
secrets:
tb_admin_token: ${{ secrets.TB_ADMIN_TOKEN }}
tb_host: https://ui.tinybird.co
29 changes: 29 additions & 0 deletions .github/workflows/tinybird_ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@

##################################################
### Visit https://github.com/tinybirdco/ci ###
### for more details or custom CI/CD ###
##################################################

name: Tinybird - CI Workflow

on:
workflow_dispatch:
pull_request:
branches:
- main
- master
types: [opened, reopened, labeled, unlabeled, synchronize, closed]
paths:
- '*'

concurrency: ${{ github.workflow }}-${{ github.event.pull_request.number }}

jobs:
ci:
uses: tinybirdco/ci/.github/workflows/ci.yml@main
with:
tb_deploy: true
data_project_dir: .
secrets:
tb_admin_token: ${{ secrets.TB_ADMIN_TOKEN }}
tb_host: https://ui.tinybird.co
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
--pre
tinybird-cli
tinybird-cli

0 comments on commit daa0742

Please sign in to comment.