/playdate-compiler-action

GitHub action to run the Playdate compiler on your code.

Primary LanguageShell

Playdate Compiler Action

This GitHub action compiles your Playdate app.

Inputs

path

Required Path to your source code. Default "src".

output

Name of your output file. Default "app.pdx".

strip

Strip debug symbols. Default true.

compress

Compress output files. Default true.

package

Create a .tar.gz of the output after compilation. Default true.

version

What version of the SDK to use. Default "latest".

Outputs

version

The version of pdc used. Helpful when using "latest" version.

Example usage

uses: jmhobbs/playdate-compiler-action@v2
with:
  path: 'src'
  output: 'party-parrot.pdx'
  strip: true
  compress: true
  package: true