44 lines
No EOL
1.3 KiB
YAML
44 lines
No EOL
1.3 KiB
YAML
name: Auto build
|
|
|
|
on:
|
|
push:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
apt:
|
|
name: Build Debian Package
|
|
runs-on: debian-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v5
|
|
- name: Install dependencies
|
|
run: if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
|
|
- name: Generate DEB
|
|
run: |
|
|
python generate-deb.py
|
|
- uses: actions/upload-artifact@v3
|
|
with:
|
|
path: sweecrypt-gtk.deb
|
|
flatpak:
|
|
name: Build Flatpak Package
|
|
runs-on: debian-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v5
|
|
- name: Install dependencies
|
|
run: if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
|
|
- name: Install org.freedesktop.Sdk
|
|
run: flatpak -y --user install flathub org.freedesktop.Sdk//24.08
|
|
- name: Install org.freedesktop.Platform
|
|
run: flatpak -y --user install flathub org.freedesktop.Platform//24.08
|
|
- name: Generate file for use in flatpak
|
|
run: python generate-flatpak.py
|
|
- name: Intialize builder
|
|
run: flatpak init-build
|
|
- name: Build flatpak package
|
|
run: flatpak-builder flatpak codes.swee.SweeCryptGTK.json
|
|
- uses: actions/upload-artifact@v3
|
|
with:
|
|
path: flatpak/ |