Skip to content

Commit 0ec017f

Browse files
committed
fix(build): fix yaml syntax and correctly order windows steps v0.1.35
1 parent 2953590 commit 0ec017f

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,19 +70,19 @@ jobs:
7070
msystem: MINGW64
7171
update: true
7272
install: >-
73+
mingw-w64-x86_64-htslib
74+
7375
- name: Prepare Binary Directory (Windows)
7476
if: matrix.platform == 'windows-latest'
7577
run: |
7678
mkdir -p src-tauri/binaries
7779
echo "dummy" > src-tauri/binaries/dummy.txt
7880
echo "dummy" > src-tauri/binaries/dummy.dll
7981
80-
- name: setup msys2 (Windows)
82+
- name: Get Sidecar Binaries (Windows)
8183
if: matrix.platform == 'windows-latest'
8284
shell: msys2 {0}
8385
run: |
84-
mkdir -p src-tauri/binaries
85-
8686
# Copy from MSYS2 (using local paths relative to MSYS2 root)
8787
cp /mingw64/bin/bgzip.exe src-tauri/binaries/ps-analyzer-bgzip-x86_64-pc-windows-msvc.exe
8888

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.34",
3+
"version": "0.1.35",
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.34",
4+
"version": "0.1.35",
55
"identifier": "com.lagosproject.ps-analyzer",
66
"build": {
77
"beforeDevCommand": "npm run start",

0 commit comments

Comments
 (0)