Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,3 +122,8 @@ jobs:
git add .
git commit -m "docs: snapshot version ${{ steps.version.outputs.VERSION }}"
git push

- name: Trigger docs deployment
run: gh workflow run docs.yml --ref main
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion storm-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@storm-orm/cli",
"version": "1.11.0",
"version": "1.11.1",
"description": "Storm ORM - AI assistant configuration tool",
"type": "module",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion storm-cli/storm.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { basename, join, dirname } from 'path';
import { homedir } from 'os';
import { execSync } from 'child_process';

const VERSION = '1.11.0';
const VERSION = '1.11.1';

// ─── ANSI ────────────────────────────────────────────────────────────────────

Expand Down
Loading