Skip to content
Open
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
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -317,8 +317,11 @@ jobs:
- name: Setup Node.js
uses: ./.github/actions/setup

- name: Install pacman build dependencies
run: sudo apt-get update && sudo apt-get install -y libarchive-tools
- name: Install pacman and rpm build dependencies
# libarchive-tools -> bsdtar, for the pacman target. rpm -> rpmbuild,
# which electron-builder shells out to for the rpm target; without it
# the Linux build fails at the packaging step, not at config parse.
run: sudo apt-get update && sudo apt-get install -y libarchive-tools rpm

- name: Stage whisper-stt binaries
shell: bash
Expand All @@ -338,6 +341,7 @@ jobs:
release/**/*.zsync
release/**/*.deb
release/**/*.pacman
release/**/*.rpm
if-no-files-found: error
retention-days: 30

Expand Down
3 changes: 2 additions & 1 deletion electron-builder.json5
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@
"target": [
"AppImage",
"deb",
"pacman"
"pacman",
"rpm"
],
"icon": "icons/icons/png",
"artifactName": "${productName}-Linux-${version}.${ext}",
Expand Down
Loading