diff --git a/.github/workflows/ci-workflow.yml b/.github/workflows/ci-workflow.yml index 62dc307..e2b3a9c 100755 --- a/.github/workflows/ci-workflow.yml +++ b/.github/workflows/ci-workflow.yml @@ -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" diff --git a/CHANGELOG.md b/CHANGELOG.md index 2347d18..e5549ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.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 diff --git a/Dockerfile b/Dockerfile index 574e8d8..e4d820e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ FROM python:3.9-slim LABEL "maintainer"="Alejandro Martin " -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" diff --git a/README.md b/README.md index 06905bd..4bb7a11 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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)