Skip to content

Commit a0ce275

Browse files
committed
trying to fix workflow
1 parent 2069a54 commit a0ce275

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,17 @@ jobs:
4949
# Install both mac targets on macOS runners so we can cross-build each job quickly.
5050
targets: ${{ matrix.os == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}
5151

52+
- name: Install Windows build deps
53+
if: runner.os == 'Windows'
54+
shell: powershell
55+
run: choco install -y rsync
56+
5257
- name: Install Linux build deps
5358
if: matrix.os == 'ubuntu-22.04'
5459
run: |
5560
sudo apt-get update
5661
# Tauri v2 needs webkit2gtk 4.1; patchelf is needed by the bundler.
57-
sudo apt-get install -y libwebkit2gtk-4.1-dev libayatana-appindicator3-dev librsvg2-dev patchelf
62+
sudo apt-get install -y libwebkit2gtk-4.1-dev libayatana-appindicator3-dev librsvg2-dev patchelf rsync
5863
5964
# Install dependencies
6065
- name: Install pnpm dependencies

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "scriptorium",
33
"private": true,
4-
"version": "0.1.0",
4+
"version": "0.0.0",
55
"type": "module",
66
"scripts": {
77
"dev": "rsync -aL --ignore-existing node_modules/mathjax public && vite",

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "scriptorium"
3-
version = "0.1.0"
3+
version = "0.0.0"
44
description = "A Tauri App"
55
authors = ["you"]
66
edition = "2021"

0 commit comments

Comments
 (0)