Skip to content

Commit

Permalink
another test run
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewbenington committed Dec 11, 2024
1 parent f72991e commit dc08927
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@ jobs:
# - platform: 'macos-latest' # for Intel based macs.
# args: '--target x86_64-apple-darwin'
- platform: 'ubuntu-22.04'
args: ''
args: '--target x86_64-unknown-linux-gnu,aarch64-unknown-linux-gnu'
# temporarily removed for testing
- platform: 'windows-latest'
args: ''
args: '--target x86_64-pc-windows-msvc,aarch64-pc-windows-msvc'

runs-on: ${{ matrix.platform }}
steps:
Expand All @@ -37,8 +38,7 @@ jobs:
- name: install Rust stable
uses: dtolnay/rust-toolchain@stable
with:
# Those targets are only used on macos runners so it's in an `if` to slightly speed up windows and linux builds.
targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}
targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || matrix.platform == 'windows-latest' && 'x86_64-pc-windows-msvc,aarch64-pc-windows-msvc' || matrix.platform == 'ubuntu-22.04' && 'x86_64-unknown-linux-gnu,aarch64-unknown-linux-gnu' || '' }}

- name: install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-22.04' # This must match the platform value defined above.
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"bundle": {
"active": true,
"targets": "all",
"targets": ["deb", "nsis", "dmg"],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
Expand Down

0 comments on commit dc08927

Please sign in to comment.