build(release): add rpm build for Linux

This commit is contained in:
Panagiotis Papadopoulos 2025-02-03 08:34:17 +01:00
parent 1cd49130dd
commit e3c7a72eee

View File

@ -23,7 +23,7 @@ jobs:
extension: dmg extension: dmg
- name: linux - name: linux
image: ubuntu-latest image: ubuntu-latest
extension: deb extension: [deb, rpm]
- name: windows - name: windows
image: windows-latest image: windows-latest
extension: exe extension: exe
@ -37,6 +37,9 @@ jobs:
- name: Set up Python for appdmg to be installed - name: Set up Python for appdmg to be installed
if: ${{ matrix.os.name == 'macos' }} if: ${{ matrix.os.name == 'macos' }}
run: brew install python-setuptools run: brew install python-setuptools
- name: Install rpm on Ubuntu for RPM package building
if: ${{ matrix.os.name == 'linux' }}
run: sudo apt install rpm
- name: Install dependencies - name: Install dependencies
run: npm ci run: npm ci
- name: Update build info - name: Update build info