Test pacman builds
This commit is contained in:
parent
b382ff1290
commit
50e935c8e8
|
@ -88,6 +88,12 @@ jobs:
|
|||
with:
|
||||
name: freetube_0.8.0_alpine_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
|
||||
uses: actions/upload-artifact@v2
|
||||
if: startsWith(matrix.os, 'ubuntu')
|
||||
|
|
|
@ -20,7 +20,7 @@ if (platform == 'darwin') {
|
|||
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 = {
|
||||
|
@ -63,7 +63,7 @@ const config = {
|
|||
linux: {
|
||||
category: 'Network',
|
||||
icon: '_icons/icon.png',
|
||||
target: ['deb', 'zip', 'apk', 'rpm', 'AppImage'],
|
||||
target: ['deb', 'zip', 'apk', 'rpm', 'AppImage', 'pacman'],
|
||||
},
|
||||
mac: {
|
||||
category: 'public.app-category.utilities',
|
||||
|
|
Loading…
Reference in New Issue