An open API service indexing awesome lists of open source software.

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

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
```