Skip to content

Commit

Permalink
feat(actions): add flatpak workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
getchoo committed Aug 18, 2023
1 parent 0c9898b commit 39f10d8
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/flatpak-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Flatpak Build

on:
push:
branches: [master]
pull_request:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
container:
image: bilelmoussaoui/flatpak-github-actions:gnome-44
options: --privileged
steps:
- uses: actions/checkout@v3
with:
submodules: "true"

- name: Build Flatpak bundle
uses: flatpak/flatpak-github-actions/[email protected]
with:
bundle: modrinthApp.flatpak
manifest-path: distribution/com.modrinth.ModrinthApp.yml
cache-key: flatpak-builder-${{ github.ref }}

0 comments on commit 39f10d8

Please sign in to comment.