Skip to content

Commit 10df8a9

Browse files
fix: use @latest for npx dotx-plugin-sdk calls to bypass cache
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent f103009 commit 10df8a9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

actions/.github/workflows/release-plugin.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
run: npm install
6969

7070
- name: Verify release version
71-
run: npx @dotmatrixlabs/dotx-plugin-sdk verify-release
71+
run: npx @dotmatrixlabs/dotx-plugin-sdk@latest verify-release
7272
env:
7373
RELEASE_TAG: ${{ steps.release.outputs.tag }}
7474

@@ -87,7 +87,7 @@ jobs:
8787
run: deno task build
8888

8989
- name: Package plugin
90-
run: npx @dotmatrixlabs/dotx-plugin-sdk package
90+
run: npx @dotmatrixlabs/dotx-plugin-sdk@latest package
9191

9292
- name: Upload package artifact
9393
uses: actions/upload-artifact@v4

bin/create-dotx-plugin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ runPlugin(HelloWorld);
267267
tasks: {
268268
start: 'deno run --allow-all main.ts',
269269
build: 'deno run --allow-all --node-modules-dir=none npm:esbuild main.ts --bundle --platform=node --format=esm --external:npm:@dotmatrixlabs/dotx-plugin-sdk --outfile=dist/main.js',
270-
package: 'deno task build && npx @dotmatrixlabs/dotx-plugin-sdk package'
270+
package: 'deno task build && npx @dotmatrixlabs/dotx-plugin-sdk@latest package'
271271
}
272272
}, null, 2) + '\n',
273273
'.gitignore': `dist/\nplugin.log\n.DS_Store\n`,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dotmatrixlabs/create-dotx-plugin",
3-
"version": "1.2.3",
3+
"version": "1.2.4",
44
"type": "module",
55
"description": "Scaffold a Dot X plugin project",
66
"bin": {

0 commit comments

Comments
 (0)