Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/santima10/streamdeck-action
- Owner: SantiMA10
- Created: 2021-04-30T20:04:14.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-30T07:16:38.000Z (about 2 years ago)
- Last Synced: 2024-10-17T09:00:19.475Z (3 months ago)
- Topics: github-actions, streamdeck, streamdeck-tools
- Homepage:
- Size: 108 KB
- Stars: 5
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)