Add flatpak workflow for GitHub Actions #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Flatpak | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
flatpak: | |
name: "Flatpak" | |
runs-on: ubuntu-latest | |
container: | |
image: bilelmoussaoui/flatpak-github-actions:kde-6.7 | |
options: --privileged | |
steps: | |
- name: Checkout openchemistry | |
uses: actions/checkout@v4 | |
with: | |
repository: openchemistry/openchemistry | |
submodules: false | |
path: src | |
- name: Checkout avogadroapp | |
uses: actions/checkout@v4 | |
with: | |
repository: openchemistry/avogadroapp | |
path: src/avogadroapp | |
- name: Checkout avogadrolibs | |
uses: actions/checkout@v4 | |
with: | |
path: src/avogadrolibs | |
- name: Checkout i18n | |
uses: actions/checkout@v4 | |
with: | |
repository: openchemistry/avogadro-i18n | |
path: src/avogadro-i18n | |
- name: Checkout avogadrogenerators | |
uses: actions/checkout@v4 | |
with: | |
repository: openchemistry/avogenerators | |
path: src/avogadrogenerators | |
- name: Checkout crystals | |
uses: actions/checkout@v4 | |
with: | |
repository: openchemistry/crystals | |
path: src/crystals | |
- name: Checkout fragments | |
uses: actions/checkout@v4 | |
with: | |
repository: openchemistry/fragments | |
path: src/fragments | |
- name: Checkout molecules | |
uses: actions/checkout@v4 | |
with: | |
repository: openchemistry/molecules | |
path: src/molecules | |
- name: Checkout Flathub shared-modules | |
uses: actions/checkout@v4 | |
with: | |
repository: flathub/shared-modules | |
path: shared-modules | |
- name: Setup tmate session | |
if: failure() | |
uses: mxschmitt/action-tmate@v3 | |
- name: Move manifest | |
run: mv src/avogadroapp/flatpak/org.openchemistry.Avogadro2.yaml ./ | |
- name: Build with flatpak-builder | |
uses: flatpak/flatpak-github-actions/flatpak-builder@v6 | |
with: | |
bundle: avogadro2.flatpak | |
branch: nightly | |
manifest-path: org.openchemistry.Avogadro2.yaml | |
cache: false | |
cache-key: flatpak-builder-${{ github.sha }} | |
- name: Cleanup | |
if: ${{ always() }} # To ensure this step runs even when earlier steps fail | |
shell: bash | |
run: | | |
ls -la ./ | |
rm -rf ./* || true | |
rm -rf ./.??* || true | |
ls -la ./ |