Skip to content

Commit

Permalink
change deploy matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
thewh1teagle committed Nov 25, 2023
1 parent 2df0583 commit f0dc89f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/deploy_desktop.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Release
on:
push:
tags:
- 'v*'
- "v*"
workflow_dispatch:

jobs:
Expand All @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-20.04, windows-latest]
platform: [macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
env:
working-directory: ./desktop
Expand All @@ -34,13 +34,13 @@ jobs:
- name: Rust cache
uses: swatinem/rust-cache@v2
with:
workspaces: './desktop/src-tauri -> target'
workspaces: "./desktop/src-tauri -> target"

- name: Sync node version and setup cache
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'npm' # Set this to npm, yarn or pnpm.
node-version: "lts/*"
cache: "npm" # Set this to npm, yarn or pnpm.
cache-dependency-path: desktop/package-lock.json

- name: Install frontend dependencies
Expand All @@ -55,8 +55,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tagName: ${{ github.ref_name }} # This only works if your workflow triggers on new tags.
releaseName: 'mobslide v__VERSION__' # tauri-action replaces \_\_VERSION\_\_ with the app version.
releaseBody: 'See the assets to download and install this version.'
releaseName: "mobslide v__VERSION__" # tauri-action replaces \_\_VERSION\_\_ with the app version.
releaseBody: "See the assets to download and install this version."
releaseDraft: true
prerelease: false
projectPath: ${{env.working-directory}}

0 comments on commit f0dc89f

Please sign in to comment.