From fc7179d633516e73d6bf5d073c98a01928ee75ea Mon Sep 17 00:00:00 2001 From: Brent Deverman Date: Mon, 19 May 2025 00:04:52 +0800 Subject: [PATCH] Create main.yml Testing GitHub workflows --- .github/workflows/main.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..89a3c3c --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,20 @@ + - name: streamdeck cli pack + # You may pin to the exact commit or the version. + # uses: neilenns/streamdeck-cli-pack@db4f83e69f7264b7d2ca6eb4deebc849c5bb0154 + uses: neilenns/streamdeck-cli-pack@v1.2.8 + with: + # The path to the plugin to pack. Optional. If omitted the first directory in the working directory ending in .sdPlugin is used. + path: # optional + # The path to save the packed plugin to. Optional. If omitted the plugin is saved to the working directory. + outputPath: dist/ # optional + # If true, overwites a package if it exists. + force: true # optional + # The version for the plugin. Optional. If omitted the version tag for the GitHub release is used. If no version tag is available the run number is used. + version: # optional + # If true, generates a report without creating a package. + dryRun: # optional + # If true, forces an update check for new validation rules. Cannot be used in conjunction with noUpdateCheck. + forceUpdateCheck: # optional + # If true, prevents an update check of new validation rules. Cannot be used in conjunction with forceUpdateCheck. + noUpdateCheck: # optional +