Test pacman builds
This commit is contained in:
parent
b382ff1290
commit
50e935c8e8
|
@ -88,6 +88,12 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: freetube_0.8.0_alpine_arm64.apk
|
name: freetube_0.8.0_alpine_arm64.apk
|
||||||
path: build/freetube-0.8.0-arm64.apk
|
path: build/freetube-0.8.0-arm64.apk
|
||||||
|
- name: Upload Pacman .pacman x64 Artifact
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
if: startsWith(matrix.os, 'ubuntu')
|
||||||
|
with:
|
||||||
|
name: freetube_0.8.0_pacman_arm64.pacman
|
||||||
|
path: build/freetube-0.8.0.pacman
|
||||||
- name: Upload Web Build
|
- name: Upload Web Build
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
if: startsWith(matrix.os, 'ubuntu')
|
if: startsWith(matrix.os, 'ubuntu')
|
||||||
|
|
|
@ -20,7 +20,7 @@ if (platform == 'darwin') {
|
||||||
arch = Arch.arm64
|
arch = Arch.arm64
|
||||||
}
|
}
|
||||||
|
|
||||||
targets = Platform.LINUX.createTarget(['deb', 'zip', 'apk', 'rpm', 'AppImage'], arch)
|
targets = Platform.LINUX.createTarget(['deb', 'zip', 'apk', 'rpm', 'AppImage', 'pacman'], arch)
|
||||||
}
|
}
|
||||||
|
|
||||||
const config = {
|
const config = {
|
||||||
|
@ -63,7 +63,7 @@ const config = {
|
||||||
linux: {
|
linux: {
|
||||||
category: 'Network',
|
category: 'Network',
|
||||||
icon: '_icons/icon.png',
|
icon: '_icons/icon.png',
|
||||||
target: ['deb', 'zip', 'apk', 'rpm', 'AppImage'],
|
target: ['deb', 'zip', 'apk', 'rpm', 'AppImage', 'pacman'],
|
||||||
},
|
},
|
||||||
mac: {
|
mac: {
|
||||||
category: 'public.app-category.utilities',
|
category: 'public.app-category.utilities',
|
||||||
|
|
Loading…
Reference in New Issue