Skip to content

Commit

Permalink
Rename to tinybird-action-cli
Browse files Browse the repository at this point in the history
  • Loading branch information
alejandromav committed Jul 3, 2022
1 parent 899bbee commit 39f9391
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
uses: actions/checkout@v2
- name: Test Tinybird CLI, should prompt help
uses: ./ # Uses an action in the root directory
id: tinybird-cli
id: tinybird-action-cli
with:
token: ${{ secrets.TINYBIRD_TOKEN }}
args: "--debug push --push-deps"
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [1.0.1] - 2022-07-03

- Rename to `tinybird-action-cli`

## [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
[Unreleased]: https://github.com/alejandromav/tinybird-action-cli/compare/1.0.1...HEAD
[1.0.1]: https://github.com/alejandromav/tinybird-action-cli/compare/1.0.0...1.0.1
[1.0.0]: https://github.com/alejandromav/tinybird-action-cli/tree/1.0.0
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM python:3.9-slim

LABEL "maintainer"="Alejandro Martin <hi@alejandromav.com>"
LABEL "repository"="https://github.com/alejandromav/tinybird-action"
LABEL "homepage"="https://github.com/alejandromav/tinybird-action"
LABEL "repository"="https://github.com/alejandromav/tinybird-action-cli"
LABEL "homepage"="https://github.com/alejandromav/tinybird-action-cli"

LABEL "com.github.actions.name"="tinybird"
LABEL "com.github.actions.name"="tinybird-cli"
LABEL "com.github.actions.description"="Run Tinybird CLI"
LABEL "com.github.actions.icon"="activity"
LABEL "com.github.actions.color"="gray-dark"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Tinybird GitHub Action
# Tinybird GitHub Action CLI
This action allows you to run [Tinybird CLI](https://docs.tinybird.co/cli.html) on your project.

## Usage
Expand Down Expand Up @@ -28,7 +28,7 @@ jobs:

- name: Push changes to Tinybird
# replace "master" with any valid ref
uses: alejandromav/tinybird-action@master
uses: alejandromav/tinybird-action-cli@master
with:
# [required]
# Tinybird admin token. Please, use Github secrets (https://docs.github.com/en/actions/security-guides/encrypted-secrets)
Expand Down

0 comments on commit 39f9391

Please sign in to comment.