Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alejandromav committed Nov 24, 2021
1 parent 7c76ba4 commit 899bbee
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ jobs:
id: tinybird-cli
with:
token: ${{ secrets.TINYBIRD_TOKEN }}
args: "--debug push"
args: "--debug push --push-deps"
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

## [1.0.0] - 2021-11-24

- Create basic action structure
- Allow any args to Tinybird CLI, just pass them through

[Unreleased]: https://github.com/alejandromav/tinybird-action/compare/1.0.0...HEAD
<!-- [1.1.0]: https://github.com/alejandromav/tinybird-action/compare/1.0.0...1.1.0 -->
[1.0.0]: https://github.com/alejandromav/tinybird-action/tree/1.0.0
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
This action allows you to run [Tinybird CLI](https://docs.tinybird.co/cli.html) on your project.

## Usage
To use the action simply create an `*.yml`file in the `.github/workflows/` directory.
To use the action simply create an `*.yml` file in the `.github/workflows/` directory. Ref. https://docs.github.com/es/actions/learn-github-actions/workflow-syntax-for-github-actions

For example:
For example, this will push your latest changes to Tinybird:

```yaml
name: Push to Tinybird # feel free to pick your own name
Expand All @@ -26,7 +26,7 @@ jobs:
# Important: This sets up your GITHUB_WORKSPACE environment variable
- uses: actions/checkout@v2

- name: Lint Ansible Playbook
- name: Push changes to Tinybird
# replace "master" with any valid ref
uses: alejandromav/tinybird-action@master
with:
Expand Down
9 changes: 7 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Tinybird
name: Tinybird CLI
description: Run Tinybird CLI
author: Alejandro Martin <hi@alejandromav.com>

Expand Down Expand Up @@ -48,4 +48,9 @@ runs:
args:
- ${{ inputs.args }}
env:
TOKEN: ${{ inputs.token }}
TOKEN: ${{ inputs.token }}

# For Github Marketplace listing
branding:
icon: 'play'
color: 'white'

0 comments on commit 899bbee

Please sign in to comment.