-
Notifications
You must be signed in to change notification settings - Fork 246
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,14 +75,14 @@ jobs: | |
echo "VITE_LANGFUSE_SECRET_KEY=${{ secrets.LANGFUSE_SECRET_KEY }}" >> $GITHUB_ENV | ||
# Build and sign Windows separately using Azure Trusted Signing | ||
- name: Build Electron app (Windows) | ||
- name: Build Electron App (Windows only) | ||
if: startsWith(matrix.os, 'windows') | ||
working-directory: apps/studio | ||
run: npx electron-builder --win --dir | ||
run: bun run build && npx electron-builder --win | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Azure Trusted Signing | ||
- name: Azure Trusted Signing (Windows only) | ||
if: startsWith(matrix.os, 'windows') | ||
uses: azure/[email protected] | ||
with: | ||
|
@@ -95,7 +95,7 @@ jobs: | |
files-folder: apps/studio/dist/win-unpacked | ||
files-folder-filter: exe | ||
|
||
- name: Build/release Electron app | ||
- name: Build and Release Electron App | ||
uses: samuelmeuli/action-electron-builder@v1 | ||
with: | ||
skip_build: ${{ startsWith(matrix.os, 'windows') }} # Skip build for Windows since we build and sign separately | ||
|