File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -134,6 +134,25 @@ jobs:
134
134
- name : Build Windows app
135
135
run : |
136
136
pnpm tauri build --verbose
137
+ - name : Rename build artifacts
138
+ run : |
139
+ mv ./src-tauri/target/release/bundle/msi/*.msi ./octo-${{ env.APP_VERSION }}-x64.msi
140
+ mv ./src-tauri/target/release/bundle/msi/*.msi.sig ./octo-${{ env.APP_VERSION }}-x64.msi.sig
141
+ mv ./src-tauri/target/release/bundle/nsis/*.exe ./octo-${{ env.APP_VERSION }}-x64.exe
142
+ mv ./src-tauri/target/release/bundle/nsis/*.exe.sig ./octo-${{ env.APP_VERSION }}-x64.exe.sig
143
+ - name : Release
144
+ uses : softprops/action-gh-release@v2
145
+ with :
146
+ draft : true
147
+ files : |
148
+ ./octo-${{ env.APP_VERSION }}-x64.msi
149
+ ./octo-${{ env.APP_VERSION }}-x64.msi.sig
150
+ ./octo-${{ env.APP_VERSION }}-x64.exe
151
+ ./octo-${{ env.APP_VERSION }}-x64.exe.sig
152
+ make_latest : true
153
+ name : App ${{ env.APP_VERSION }}
154
+ tag_name : app-${{ env.APP_VERSION }}
155
+ target_commitish : ${{ github.sha }}
137
156
build-mobile-android :
138
157
runs-on : ubuntu-latest
139
158
steps :
You can’t perform that action at this time.
0 commit comments