Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: drop appimage bundle and v1 compatible updater #409

Merged
merged 4 commits into from
Oct 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 0 additions & 17 deletions .github/workflows/andorid-pr.yml

This file was deleted.

16 changes: 16 additions & 0 deletions .github/workflows/android-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: "📱"

on:
pull_request:
branches:
- main

concurrency:
group: ${{ format('android-{0}', github.ref) }}
cancel-in-progress: true
jobs:
pr:
permissions:
contents: write
uses: ./.github/workflows/android.yml
secrets: inherit
4 changes: 2 additions & 2 deletions .github/workflows/desktop-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ on:
- main

concurrency:
# On main, we want all builds to complete even if merging happens faster to make it easier to discover at which point something broke.
group: ${{ github.ref == 'refs/heads/main' && format('desktop-main-{0}', github.sha) || format('desktop-{0}', github.ref) }}
group: ${{ format('desktop-{0}', github.ref) }}
cancel-in-progress: true

jobs:
pr:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/desktop-tauri.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,6 @@ jobs:
target/release/bundle/nsis/*
target/**/release/bundle/macos/*.tar.gz*
target/**/release/bundle/dmg/*.dmg
target/release/bundle/appimage/*.AppImage.*
target/release/bundle/deb/*.deb
target/**/release/mdns-browser
target/release/mdns-browser.exe
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.android.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"active": false
},
"productName": "mDNS Browser",
"version": "0.8.14",
"version": "0.9.0",
"identifier": "com.github.hrzlgnm.mdns-browser",
"plugins": {},
"app": {
Expand Down
9 changes: 4 additions & 5 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,10 @@
"bundle": {
"active": true,
"targets": [
"app",
"deb",
"appimage",
"nsis",
"dmg",
"app"
"nsis"
],
"icon": [
"icons/32x32.png",
Expand All @@ -21,7 +20,7 @@
"icons/icon.icns",
"icons/icon.ico"
],
"createUpdaterArtifacts": "v1Compatible",
"createUpdaterArtifacts": true,
"linux": {
"deb": {
"files": {
Expand All @@ -31,7 +30,7 @@
}
},
"productName": "mdns-browser",
"version": "0.8.14",
"version": "0.9.0",
"identifier": "com.github.hrzlgnm.mdns-browser",
"plugins": {
"updater": {
Expand Down