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
6 changes: 3 additions & 3 deletions .github/workflows/macos-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ jobs:
- name: Calculate DMG checksum
id: checksum
run: |
if [ ! -f "release-artifacts/chase-ai-*.dmg" ]; then
if ! ls release-artifacts/chase-ai-*.dmg >/dev/null 2>&1; then
echo "Error: DMG file not found"
exit 1
fi
Expand All @@ -265,7 +265,7 @@ jobs:
- name: Checkout Homebrew tap
uses: actions/checkout@v4
with:
repository: chaseai/homebrew-chaseai
repository: Mitriyweb/homebrew-chaseai
token: ${{ secrets.HOMEBREW_TAP_TOKEN }}
path: homebrew-tap

Expand All @@ -278,9 +278,9 @@ jobs:
class Chaseai < Formula
desc "Local control and orchestration system for AI agents"
homepage "https://github.com/Mitriyweb/ChaseAI"
version "${{ needs.check-version.outputs.version }}"
url "https://github.com/Mitriyweb/ChaseAI/releases/download/v#{version}/chase-ai-#{version}-macos.dmg"
sha256 "${{ steps.checksum.outputs.sha256 }}"
version "${{ needs.check-version.outputs.version }}"

def install
app_path = "ChaseAI.app"
Expand Down
21 changes: 10 additions & 11 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
"bump": "bash scripts/bump-version.sh"
},
"devDependencies": {
"markdownlint-cli2": "0.20.0",
"@j178/prek": "0.2.30"
"markdownlint-cli2": "0.21.0",
"@j178/prek": "0.3.3"
},
"engines": {
"bun": ">=1.0.0"
Expand All @@ -38,6 +38,6 @@
"@isaacs/brace-expansion": "5.0.1",
"axios": "1.13.5",
"markdown-it": "14.1.1",
"minimatch": "10.2.1"
"minimatch": "10.2.4"
}
}