diff options
author | Patrick Griffis <pgriffis@igalia.com> | 2021-05-27 19:16:42 -0500 |
---|---|---|
committer | Patrick Griffis <pgriffis@igalia.com> | 2021-06-21 12:48:38 -0500 |
commit | 28a4726ddc779c0510ca32eec4b20f0218a6f137 (patch) | |
tree | c2fc9f552370fdd4c28706dbbfd61f5f19e94659 /.github/workflows | |
parent | 6b7d110cedce6955d510bb66d8923a06cc5c863c (diff) |
actions: Add flatpak action
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/flatpak-build.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/flatpak-build.yml b/.github/workflows/flatpak-build.yml new file mode 100644 index 00000000..5a0371b9 --- /dev/null +++ b/.github/workflows/flatpak-build.yml @@ -0,0 +1,17 @@ +name: Flatpak Build +on: [push, pull_request] +jobs: + build: + runs-on: ubuntu-latest + container: + image: bilelmoussaoui/flatpak-github-actions:gnome-40 + options: --privileged + steps: + - uses: actions/checkout@v2 + with: + submodules: true + + - uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v3 + with: + bundle: hexchat.flatpak + manifest-path: flatpak/io.github.Hexchat.json |