Intial GTK, swtich to Relm, basic Flatpak Build
This commit is contained in:
parent
f1d7a98491
commit
60257b256a
29 changed files with 2573 additions and 563 deletions
19
.github/workflows/build-flatpak.yml
vendored
Normal file
19
.github/workflows/build-flatpak.yml
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
pull_request:
|
||||
name: Build Flatpak
|
||||
jobs:
|
||||
flatpak:
|
||||
name: Build Flatpak
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: bilelmoussaoui/flatpak-github-actions:gnome-45
|
||||
options: --privileged
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: flatpak/flatpak-github-actions/flatpak-builder@v6
|
||||
with:
|
||||
bundle: Burrow.flatpak
|
||||
manifest-path: burrow-gtk/com.hackclub.burrow.devel.json
|
||||
cache-key: flatpak-builder-${{ github.sha }}
|
||||
5
.github/workflows/build-rpm.yml
vendored
5
.github/workflows/build-rpm.yml
vendored
|
|
@ -7,13 +7,14 @@ on:
|
|||
- "*"
|
||||
jobs:
|
||||
build:
|
||||
name: Build RPM
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: Swatinem/rust-cache@v2
|
||||
- name: Install
|
||||
- name: Install RPM
|
||||
run: cargo install cargo-generate-rpm
|
||||
- name: Build
|
||||
- name: Build RPM
|
||||
run: |
|
||||
cargo build --release
|
||||
strip -s target/release/burrow
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue