Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/santima10/streamdeck-action

🚀 A GitHub Action to compile StreamDeck apps.
https://github.com/santima10/streamdeck-action

github-actions streamdeck streamdeck-tools

Last synced: about 2 months ago
JSON representation

🚀 A GitHub Action to compile StreamDeck apps.

Awesome Lists containing this project

README

        

# streamdeck-action

## How to use it

Here is an example of how to configure it
```yaml
jobs:
build:
runs-on: [macos-latest] # 👀 This action only works on macOS
steps:
- uses: actions/checkout@v2
# Do you stuff to build the project
- uses: SantiMA10/[email protected]
with:
input-directory: "/dist/dev.santiagomartin.devops.sdPlugin" # Where is your code
output-directory: "/release" # Where you want the .streamDeckPlugin
# Create an artifact to download it
- name: Upload .streamDeckPlugin artifact
uses: actions/[email protected]
with:
name: dev.santiagomartin.devops.streamDeckPlugin
path: ./release/
```

## Used by
- [`SantiMA10/devops-streamdeck`](https://github.com/SantiMA10/devops-streamdeck)
- [`eXpl0it3r/streamdeck-clockify`](https://github.com/eXpl0it3r/streamdeck-clockify)