https://github.com/theworkflow/particle.io-actions
Run Particle.io cloud operations against codebase and devices
https://github.com/theworkflow/particle.io-actions
Last synced: over 1 year ago
JSON representation
Run Particle.io cloud operations against codebase and devices
- Host: GitHub
- URL: https://github.com/theworkflow/particle.io-actions
- Owner: theworkflow
- Created: 2019-12-10T15:47:27.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-12-19T15:34:22.000Z (over 6 years ago)
- Last Synced: 2024-10-18T06:42:50.101Z (over 1 year ago)
- Language: Shell
- Homepage:
- Size: 1.95 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Particle.io Action
This Action allows you to run Particle.io cloud operations against codebase and devices.
## Parameters
| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `access_token` | `string` | | Particle.io access token |
| `device_type` | `string` | | Particle.io device type to run operations against (argon, boron, xenon, etc) |
| `device_id` | `string` | | Particle.io device ID or name |
## Usage
```yaml
jobs:
compile:
runs-on: ubuntu-latest
steps:
- uses: theworkflow/particle.io-actions@master
with:
access_token: ${{ secrets.PARTICLE_ACCESS_TOKEN }}
device_type: argon
device_id: 1234abcd
```