From 1a52ec67316bd1b47fc9178debf92bd58e22c4a5 Mon Sep 17 00:00:00 2001 From: Jordan Duabe Date: Thu, 24 Oct 2024 23:06:36 +0800 Subject: [PATCH] Fix packaging error The package action now checks out the `streamdeck-libs` submodule and includes it when packaging the plugin. --- .github/workflows/package.yml | 7 +++++-- README.md | 4 ++-- package.json | 2 +- src/dev.jduabe.obsideck.sdPlugin/manifest.json | 2 +- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index 25d7f92..f121d81 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -10,9 +10,12 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - name: Checkout repo and submodules + uses: actions/checkout@v4 + with: + submodules: recursive - name: Package Stream Deck plugin - uses: j4ckofalltrades/streamdeck-package@v0.0.1 + uses: j4ckofalltrades/streamdeck-package@v0.1.0 with: input-directory: "src/dev.jduabe.obsideck.sdPlugin" output-directory: "release" \ No newline at end of file diff --git a/README.md b/README.md index 0724138..f47bdf0 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ relative to the selected scheme. The `Run Command` action has the following **required** config items: - API Key -- URL +- URL - Command ID ![Obsideck run command action](assets/run-command.png) @@ -667,7 +667,7 @@ Commands from other (community) plugins can be obtained by calling the commands The `Open File` action has the following **required** config items: - API Key -- URL +- URL - File Path ![Obsideck open file action](assets/open-file.png) diff --git a/package.json b/package.json index 09c274a..dfb6641 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsideck", - "version": "1.1.3", + "version": "1.1.4", "description": "A Stream Deck plugin that runs commands in Obsidian", "type": "module", "scripts": { diff --git a/src/dev.jduabe.obsideck.sdPlugin/manifest.json b/src/dev.jduabe.obsideck.sdPlugin/manifest.json index ffd4d02..1019657 100644 --- a/src/dev.jduabe.obsideck.sdPlugin/manifest.json +++ b/src/dev.jduabe.obsideck.sdPlugin/manifest.json @@ -6,7 +6,7 @@ "Name": "Obsideck", "Icon": "assets/plugin", "URL": "https://github.com/j4ckofalltrades/obsideck", - "Version": "1.1.3.0", + "Version": "1.1.4.0", "UUID": "dev.jduabe.obsideck", "Software": { "MinimumVersion": "6.4"