fix: remove AppImage and arm64 builds, keep only deb/rpm x64
All checks were successful
Build / increment-version (push) Successful in 6s
Build / build-windows (push) Successful in 3m6s
Build / build-linux (push) Successful in 4m54s
Build / create-release (push) Successful in 17s

This commit is contained in:
litruv
2026-02-21 19:15:32 +11:00
parent 775f18f601
commit dbf70fd9c4
2 changed files with 4 additions and 35 deletions

View File

@@ -144,42 +144,18 @@ jobs:
env: env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload AppImage (x64) - name: Upload DEB package
uses: actions/upload-artifact@v3
with:
name: Paarrot-Linux-x64.AppImage
path: dist-electron/Paarrot-*-x86_64.AppImage
- name: Upload AppImage (arm64)
uses: actions/upload-artifact@v3
with:
name: Paarrot-Linux-arm64.AppImage
path: dist-electron/Paarrot-*-arm64.AppImage
- name: Upload DEB package (x64)
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: Paarrot-Linux-x64.deb name: Paarrot-Linux-x64.deb
path: dist-electron/Paarrot-*-linux-amd64.deb path: dist-electron/Paarrot-*-linux-amd64.deb
- name: Upload DEB package (arm64) - name: Upload RPM package
uses: actions/upload-artifact@v3
with:
name: Paarrot-Linux-arm64.deb
path: dist-electron/Paarrot-*-linux-arm64.deb
- name: Upload RPM package (x64)
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: Paarrot-Linux-x64.rpm name: Paarrot-Linux-x64.rpm
path: dist-electron/Paarrot-*-linux-x86_64.rpm path: dist-electron/Paarrot-*-linux-x86_64.rpm
- name: Upload RPM package (arm64)
uses: actions/upload-artifact@v3
with:
name: Paarrot-Linux-arm64.rpm
path: dist-electron/Paarrot-*-linux-aarch64.rpm
create-release: create-release:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [increment-version, build-windows, build-linux] needs: [increment-version, build-windows, build-linux]

View File

@@ -32,17 +32,13 @@
], ],
"linux": { "linux": {
"target": [ "target": [
{
"target": "AppImage",
"arch": ["x64", "arm64"]
},
{ {
"target": "deb", "target": "deb",
"arch": ["x64", "arm64"] "arch": ["x64"]
}, },
{ {
"target": "rpm", "target": "rpm",
"arch": ["x64", "arm64"] "arch": ["x64"]
} }
], ],
"category": "Network;InstantMessaging", "category": "Network;InstantMessaging",
@@ -59,9 +55,6 @@
} }
} }
}, },
"appImage": {
"artifactName": "${productName}-${version}-${arch}.${ext}"
},
"deb": { "deb": {
"depends": [ "depends": [
"libnotify4", "libnotify4",