Skip to content
check

GitHub Action

Build StreamDeck App

v0.0.2 Latest version

Build StreamDeck App

check

Build StreamDeck App

Compile your StreamDeck to publish it

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Build StreamDeck App

uses: SantiMA10/streamdeck-action@v0.0.2

Learn more about this action in SantiMA10/streamdeck-action

Choose a version

streamdeck-action

How to use it

Here is an example of how to configure it

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/streamdeck-action@v0.0.1
        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/upload-artifact@v1.0.0
        with:
          name: dev.santiagomartin.devops.streamDeckPlugin
          path: ./release/

Used by