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

39 lines
988 B
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:01:50 -08:00
- name: Install runtimes
2024-12-26 21:03:56 -08:00
run: flatpak -y --user install flathub org.freedesktop.Sdk//24.08
2024-12-26 20:58:23 -08:00
- name: Generate DEB
run: |
python generate-flatpak.py
- uses: actions/upload-artifact@v3
with:
path: flatpak/