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

44 lines
1.3 KiB
YAML
Raw Permalink Normal View History

2024-12-27 00:09:40 -08:00
name: Auto build
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
2024-12-27 21:01:50 -08:00
runs-on: debian-testing
2024-12-26 20:58:23 -08:00
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-27 17:34:44 -08:00
- name: Install org.gnome.Sdk
run: flatpak -y --user install flathub org.gnome.Sdk//47
- name: Install org.gnome.Platform
run: flatpak -y --user install flathub org.gnome.Platform//47
2024-12-26 21:07:39 -08:00
- name: Generate file for use in flatpak
run: python generate-flatpak.py
- name: Build flatpak package
2024-12-27 21:55:10 -08:00
run: flatpak-builder --repo=flatrepo --disable-rofiles-fuse flatpak codes.swee.SweeCryptGTK.json
2024-12-27 00:25:32 -08:00
- name: Package the directory
2024-12-27 21:55:10 -08:00
run: tar -cvf flatpak.tar flatpak flatrepo
2024-12-26 20:58:23 -08:00
- uses: actions/upload-artifact@v3
with:
2024-12-27 00:22:43 -08:00
path: flatpak.tar