Skip to content

Commit

Permalink
matrix settings
Browse files Browse the repository at this point in the history
  • Loading branch information
ofrades committed Apr 2, 2024
1 parent e688178 commit 92d392f
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 10 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,14 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}
settings:
- platform: ubuntu-22.04
args: --target x86_64-unknown-linux-gnu
- platform: windows-latest
args: --target x86_64-pc-windows-msvc
- platform: macos-latest
args: --target universal-apple-darwin
runs-on: ${{ matrix.settings.platform }}
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -47,6 +53,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: ${{ matrix.settings.args }}
tagName: v__VERSION__
releaseName: "App v__VERSION__"
releaseBody: "See the assets to download this version and install."
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
"@astrojs/starlight-tailwind": "^2.0.1",
"@astrojs/tailwind": "^5.1.0",
"@date-fns/utc": "^1.2.0",
"@tauri-apps/api": "^2.0.0-beta.6",
"@tauri-apps/cli": "^2.0.0-beta.11",
"@tauri-apps/api": "^2.0.0-beta.2",
"@tauri-apps/cli": "^2.0.0-beta.2",
"@tauri-apps/plugin-notification": "^2.0.0-beta.2",
"@types/react": "^18.2.69",
"@types/react-dom": "^18.2.22",
Expand Down
8 changes: 6 additions & 2 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,14 @@ name = "app_lib"
crate-type = ["staticlib", "cdylib", "rlib", "lib"]

[build-dependencies]
tauri-build = { version = "2.0.0-beta", features = [] }
tauri-build = { version = "2.0.0-beta.2", features = [] }


[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "2.0.0-beta", features = [] }
tauri = { version = "2.0.0-beta.2", features = [] }
tauri-plugin-notification = "2.0.0-beta.3"

[features]
custom-protocol = ["tauri/custom-protocol"]

0 comments on commit 92d392f

Please sign in to comment.