Skip to content

Commit

Permalink
Publish version v0.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Kitenite committed Dec 18, 2024
1 parent 839dcfa commit 1d46517
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 11 deletions.
17 changes: 7 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,6 @@ jobs:
with:
node-version: 20

- name: Install system dependencies
shell: bash
run: |
if [ "$RUNNER_OS" == "macOS" ]; then
brew install python-setuptools
fi
- name: Set Mac API Key
if: startsWith(matrix.os, 'macos')
run: |
Expand All @@ -57,12 +50,10 @@ jobs:
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest

- name: Install dependencies
run: bun install --frozen-lockfile

- name: Build foundation
run: bun build:foundation

- name: Set environment variables
shell: bash
run: |
Expand All @@ -74,9 +65,15 @@ jobs:
echo "VITE_LANGFUSE_PUBLIC_KEY=${{ secrets.LANGFUSE_PUBLIC_KEY }}" >> $GITHUB_ENV
echo "VITE_LANGFUSE_SECRET_KEY=${{ secrets.LANGFUSE_SECRET_KEY }}" >> $GITHUB_ENV
- name: Build foundation
run: |
bun build:foundation
bun build
- name: Build/release Electron app
uses: samuelmeuli/action-electron-builder@v1
with:
skip_build: true
package_root: apps/studio
github_token: ${{ secrets.GITHUB_TOKEN }}
release: ${{ startsWith(github.ref, 'refs/tags/v') }}
Expand Down
2 changes: 1 addition & 1 deletion apps/studio/electron/main/run/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ class RunManager {
this.processFileForMapping(filePath);
})
.on('error', (error) => {
console.error(`Watcher error: ${error.toString()}`);
console.error(`Watcher error: ${error}`);
});
}

Expand Down

0 comments on commit 1d46517

Please sign in to comment.