https://github.com/iotsharp/tdengine-action
This action downloads, installs, and configures an TDengine OSS instance and CLI tooling that can be used in your automation.
https://github.com/iotsharp/tdengine-action
github-action tdengine time-series
Last synced: about 2 months ago
JSON representation
This action downloads, installs, and configures an TDengine OSS instance and CLI tooling that can be used in your automation.
- Host: GitHub
- URL: https://github.com/iotsharp/tdengine-action
- Owner: IoTSharp
- License: mit
- Created: 2023-01-07T10:06:41.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-12-14T18:44:07.000Z (over 1 year ago)
- Last Synced: 2025-04-12T17:57:55.312Z (about 2 months ago)
- Topics: github-action, tdengine, time-series
- Language: Shell
- Homepage:
- Size: 39.1 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TDengine Action
This action downloads, installs, and configures an TDengine OSS instance and CLI tooling that can be used in your automation.
This downloads the specified version (or `latest` ).
# Usage
See [action.yml](action.yml)
### Setup and configure TDengine and CLI Tools
```yaml
steps:
- name: Check out repo
uses: actions/checkout@v2
- name: Setup TDengine
uses: iotsharp/tdengine-action@v2
with:
tdengine_version: latest
```### Install but don't start TDengine ( CLI Tooling Only)
```yaml
steps:
- name: Check out repo
uses: actions/checkout@v2
- name: Setup TDengine
uses: iotsharp/tdengine-action@v2
with:
tdengine_version: latest
tdengine_start: false
```### Use a specific version of TDengine
```yaml
steps:
- name: Check out repo
uses: actions/checkout@v2
- name: Setup TDengine
uses: iotsharp/tdengine-action@v2
with:
tdengine_version: 3.0.2.1```