|
46 | 46 | # args: '' |
47 | 47 | - platform: 'windows-latest' |
48 | 48 | args: '--target x86_64-pc-windows-msvc' |
| 49 | + arch: x86_64-pc-windows-msvc |
49 | 50 | - platform: 'windows-latest' |
50 | 51 | args: '--target aarch64-pc-windows-msvc' |
| 52 | + arch: aarch64-pc-windows-msvc |
51 | 53 | runs-on: ${{ matrix.platform }} |
52 | 54 | needs: [changelog] |
53 | 55 | steps: |
@@ -114,24 +116,25 @@ jobs: |
114 | 116 | cd app |
115 | 117 | pnpm rls ${{ matrix.args }} |
116 | 118 |
|
117 | | - - name: CI upload Windows |
| 119 | + - name: Windows Artifacts |
118 | 120 | if: ${{ github.ref_type == 'branch' && matrix.platform == 'windows-latest' }} |
119 | 121 | uses: actions/upload-artifact@main |
120 | 122 | with: |
121 | 123 | name: 'Windows Installers' |
122 | 124 | path: | |
123 | | - src-tauri/release/bundle/msi/*.msi |
124 | | - src-tauri/release/bundle/nsis/*.exe |
| 125 | + src-tauri/target/${{ matrix.arch }}/release/bundle/msi/*.msi |
| 126 | + src-tauri/target/${{ matrix.arch }}/release/bundle/nsis/*.exe |
125 | 127 |
|
126 | | - - name: CI upload macOS |
| 128 | + - name: macOS Artifacts |
127 | 129 | if: ${{ github.ref_type == 'branch' && matrix.platform == 'macos-latest' }} |
128 | 130 | uses: actions/upload-artifact@main |
129 | 131 | with: |
130 | 132 | name: 'macOS Installer' |
131 | 133 | path: | |
132 | | - src-tauri/release/bundle/dmg/*.dmg |
| 134 | + src-tauri/target/release/bundle/dmg/*.dmg |
| 135 | + src-tauri/target/release/bundle/app/*.app |
133 | 136 |
|
134 | | - - name: CI upload Linux |
| 137 | + - name: Linux Artifacts |
135 | 138 | if: ${{ github.ref_type == 'branch' && startsWith(matrix.platform, 'ubuntu') }} |
136 | 139 | uses: actions/upload-artifact@main |
137 | 140 | with: |
|
0 commit comments