Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🤖 enable RPM package creation #237

Merged
merged 1 commit into from
Dec 6, 2022
Merged
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
2 changes: 2 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ jobs:
run: ./utils/upload-artifact.js electronim-linux-x64.tar.gz application/tar+gzip
- name: Upload AppImage
run: ./utils/upload-artifact.js electronim-linux-x86_64.AppImage application/octet-stream
- name: Upload RPM
run: ./utils/upload-artifact.js electronim-linux-x86_64.rpm application/octet-stream
- name: Publish Snap
run: |
sudo apt-get install snapd
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@ jobs:
with:
name: electronim-linux-x86_64.AppImage
path: dist/electronim-linux-x86_64.AppImage
- name: CI Artifact for RPM
uses: actions/upload-artifact@v3
with:
name: electronim-linux-x86_64.rpm
path: dist/electronim-linux-x86_64.rpm
macos-build:
name: macOS Build
runs-on: macos-latest
Expand Down
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"description": "Free/Libre open source Electron based multi instant messaging (IM) client.",
"author": {
"name": "Marc Nuri",
"email": "[email protected]",
"url": "https://www.marcnuri.com"
},
"main": "src/index.js",
Expand Down Expand Up @@ -107,6 +108,7 @@
"icon": "icon_1024x1024.png",
"target": [
"AppImage",
"rpm",
"snap",
"tar.gz"
]
Expand Down