Skip to content

Commit

Permalink
feat: drop appimage bundle and v1 compatible updater (#409)
Browse files Browse the repository at this point in the history
  • Loading branch information
hrzlgnm authored Oct 20, 2024
1 parent 973b746 commit a2b2f42
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 26 deletions.
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

0 comments on commit a2b2f42

Please sign in to comment.