Skip to content

πŸš€ A GitHub Action to compile StreamDeck apps.

Notifications You must be signed in to change notification settings

SantiMA10/streamdeck-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

6 Commits
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

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