Skip to content

Commit 2953590

Browse files
committed
fix(build): use powershell for dummy files on windows and bump version to 0.1.34
1 parent 57dc413 commit 2953590

3 files changed

Lines changed: 9 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,14 @@ jobs:
7070
msystem: MINGW64
7171
update: true
7272
install: >-
73-
mingw-w64-x86_64-htslib
73+
- name: Prepare Binary Directory (Windows)
74+
if: matrix.platform == 'windows-latest'
75+
run: |
76+
mkdir -p src-tauri/binaries
77+
echo "dummy" > src-tauri/binaries/dummy.txt
78+
echo "dummy" > src-tauri/binaries/dummy.dll
7479
75-
- name: Get Sidecar Binaries (Windows)
80+
- name: setup msys2 (Windows)
7681
if: matrix.platform == 'windows-latest'
7782
shell: msys2 {0}
7883
run: |

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ps-analyzer",
3-
"version": "0.1.33",
3+
"version": "0.1.34",
44
"author": "Pablo Fernández Lagos <pablo.fernandez.lago@idipaz.es>",
55
"scripts": {
66
"ng": "ng",

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "PS Analyzer",
4-
"version": "0.1.33",
4+
"version": "0.1.34",
55
"identifier": "com.lagosproject.ps-analyzer",
66
"build": {
77
"beforeDevCommand": "npm run start",

0 commit comments

Comments
 (0)