File tree Expand file tree Collapse file tree 3 files changed +18
-4
lines changed
Expand file tree Collapse file tree 3 files changed +18
-4
lines changed Original file line number Diff line number Diff line change @@ -129,9 +129,18 @@ jobs:
129129 working-directory : web
130130
131131 - name : Build frontend
132- run : npm run build
132+ run : |
133+ echo "Building frontend..."
134+ npm run build
135+ echo "Frontend build completed"
136+ ls -la dist || echo "dist directory not found in workspace root"
133137 working-directory : web
134138
139+ - name : Verify frontend dist exists
140+ run : |
141+ echo "Checking for dist directory in workspace root..."
142+ ls -la ../dist || echo "dist directory not found in workspace root"
143+
135144 - name : Build Tauri app
136145 uses : tauri-apps/tauri-action@v0
137146 env :
Original file line number Diff line number Diff line change 6565 working-directory : web
6666
6767 - name : Build frontend
68- run : npm run build
68+ run : |
69+ echo "Building frontend..."
70+ npm run build
71+ echo "Frontend build completed"
72+ ls -la dist || echo "dist directory not found in workspace root"
6973 working-directory : web
7074
7175 - name : Build application
@@ -77,14 +81,14 @@ jobs:
7781 args : ${{ matrix.args }}
7882
7983 - name : List bundle files
80- run : find src-tauri/ target -name "bundle" -type d -exec find {} -type f \;
84+ run : find target -name "bundle" -type d -exec find {} -type f \; || echo "No bundle files found"
8185
8286 - name : Upload Release Assets
8387 if : startsWith(github.ref, 'refs/tags/')
8488 uses : softprops/action-gh-release@v2
8589 with :
8690 files : |
87- src-tauri/ target/*/release/bundle/**/*
91+ target/*/release/bundle/**/ */*
8892 generate_release_notes : true
8993 draft : false
9094 prerelease : ${{ contains(github.ref, 'beta') || contains(github.ref, 'alpha') }}
Original file line number Diff line number Diff line change 99 "frontendDist" : " ../dist"
1010 },
1111 "bundle" : {
12+ "active" : true ,
1213 "icon" : [
1314 " icons/32x32.png" ,
1415 " icons/128x128.png" ,
You can’t perform that action at this time.
0 commit comments