Skip to content

Commit 750f948

Browse files
committed
fixed build failing to compile
1 parent ce14b22 commit 750f948

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616
target: x86_64-unknown-linux-gnu
1717
artifact_name: spent_amd64.deb
1818
artifact_path: src-tauri/target/release/bundle/deb/*.deb
19-
appimage_path: src-tauri/target/release/bundle/appimage/*.AppImage
19+
appimage_path: src-tauri/target/release/bundle/appimage/*.AppImage*
2020
- platform: windows-latest
2121
target: x86_64-pc-windows-msvc
2222
artifact_name: spent_x64-setup.exe
23-
artifact_path: src-tauri/target/release/bundle/nsis/*.exe
23+
artifact_path: src-tauri/target/release/bundle/nsis/*setup*.exe
2424
- platform: macos-latest
2525
target: x86_64-apple-darwin
2626
artifact_name: spent.app.tar.gz
@@ -108,15 +108,15 @@ jobs:
108108
- name: Archive macOS app
109109
if: matrix.platform == 'macos-latest'
110110
run: |
111-
cd src-tauri/target/release/bundle/macos
111+
cd src-tauri/target/${{ matrix.target }}/release/bundle/macos
112112
tar -czf spent.app.tar.gz *.app
113113
114114
- name: Upload macOS artifact
115115
if: matrix.platform == 'macos-latest'
116116
uses: actions/upload-artifact@v4
117117
with:
118118
name: spent-macos-${{ matrix.target }}
119-
path: src-tauri/target/release/bundle/macos/spent.app.tar.gz
119+
path: src-tauri/target/${{ matrix.target }}/release/bundle/macos/spent.app.tar.gz
120120

121121
release:
122122
needs: build

0 commit comments

Comments
 (0)