50 lines
No EOL
1.6 KiB
YAML
50 lines
No EOL
1.6 KiB
YAML
name: Auto build
|
|
|
|
on:
|
|
push:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
apt:
|
|
name: Build Debian Package
|
|
runs-on: docker
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v5
|
|
- name: Setup sweerepo
|
|
run: curl -sL https://swee.codes/repo.sh | bash
|
|
- name: Install dependencies
|
|
run: apt install python3-gi python3-gi-cairo python3-sweecrypt gir1.2-gtk-3.0 -y
|
|
- name: Generate DEB
|
|
run: |
|
|
python3 generate-deb.py
|
|
- uses: actions/upload-artifact@v3
|
|
with:
|
|
path: sweecrypt-gtk.deb
|
|
flatpak:
|
|
name: Build Flatpak Package
|
|
runs-on: docker
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v5
|
|
- name: Install dependencies
|
|
run: if [ -f requirements.txt ]; then pip install --break-system-packages -r requirements.txt; fi
|
|
- name: Install flatpak
|
|
run: apt update && sudo apt install flatpak flatpak-builder -y
|
|
- name: Setup flathub
|
|
run: flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo
|
|
- name: Install org.gnome.Sdk
|
|
run: flatpak -y install flathub org.gnome.Sdk//47
|
|
- name: Install org.gnome.Platform
|
|
run: flatpak -y install flathub org.gnome.Platform//47
|
|
- name: Generate file for use in flatpak
|
|
run: python generate-flatpak.py
|
|
- name: Build flatpak package
|
|
run: flatpak-builder --repo=flatrepo --disable-rofiles-fuse flatpak codes.swee.SweeCryptGTK.json
|
|
- name: Package the directory
|
|
run: tar -cvf flatpak.tar flatpak flatrepo
|
|
- uses: actions/upload-artifact@v3
|
|
with:
|
|
path: flatpak.tar |