sweeCrypt-GTK/.forgejo/workflows/build.yml

42 lines
1.2 KiB
YAML
Raw Normal View History

name: Sanity check
on:
push:
workflow_dispatch:
jobs:
2024-12-26 20:58:23 -08:00
apt:
name: Build Debian Package
2024-12-18 15:44:54 -08:00
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
2024-12-18 15:44:30 -08:00
- uses: actions/upload-artifact@v3
2024-10-12 22:58:09 -07:00
with:
2024-12-26 20:58:23 -08:00
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
2024-12-26 21:07:39 -08:00
- name: Install org.freedesktop.Sdk
2024-12-26 21:03:56 -08:00
run: flatpak -y --user install flathub org.freedesktop.Sdk//24.08
2024-12-26 21:07:39 -08:00
- name: Install org.freedesktop.Platform
run: flatpak -y --user install flathub org.freedesktop.Runtime//24.08
- name: Generate file for use in flatpak
run: python generate-flatpak.py
- name: Build flatpak package
run: flatpak-builder flatpak codes.swee.SweeCryptGTK.json
2024-12-26 20:58:23 -08:00
- uses: actions/upload-artifact@v3
with:
path: flatpak/