flatpak: Attempt to fix the thing... #11
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: Flatter | |
on: | |
# Rebuild once a day | |
schedule: | |
- cron: "0 0 * * *" | |
workflow_dispatch: | |
jobs: | |
flatter: | |
name: Flatter | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/andyholmes/flatter/gnome:45 | |
options: --privileged | |
strategy: | |
matrix: | |
arch: [x86_64, aarch64] | |
fail-fast: false | |
# Only one job at a time can use the shared repository cache | |
max-parallel: 1 | |
steps: | |
# Checkout a repository with Flatpak manifests | |
- name: Checkout | |
uses: actions/checkout@v3 | |
run: | | |
wget https://github.com/flatpak/flatpak-builder-tools/raw/master/cargo/flatpak-cargo-generator.py | |
python3 ./flatpak-cargo-generator.py ./Cargo.lock -o cargo-sources.json | |
- name: Generate Cargo sources | |
run: | | |
wget https://github.com/flatpak/flatpak-builder-tools/raw/master/cargo/flatpak-cargo-generator.py | |
python3 ./flatpak-cargo-generator.py ./Cargo.lock -o cargo-sources.json | |
# See "Multiple Architectures" below | |
- name: Setup QEMU | |
if: ${{ matrix.arch == 'aarch64' }} | |
id: qemu | |
uses: docker/setup-qemu-action@v3 | |
with: | |
platforms: arm64 | |
# See "GPG Signing" below | |
- name: Setup GPG | |
id: gpg | |
uses: crazy-max/ghaction-import-gpg@v6 | |
with: | |
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} | |
passphrase: ${{ secrets.GPG_PASSPHRASE }} | |
# Generate a CNAME file on-the-fly for a configured host | |
# - name: Generate CNAME | |
# run: | | |
# echo "flatter.andyholmes.ca" > CNAME | |
- name: Build | |
uses: andyholmes/flatter@main | |
with: | |
files: | | |
net.baseart.Glide.json | |
arch: ${{ matrix.arch }} | |
flatpak-builder-args: | | |
--install-deps-from=flathub | |
gpg-sign: ${{ steps.gpg.outputs.fingerprint }} | |
upload-bundles: true | |
upload-pages-artifact: ${{ matrix.arch == 'aarch64' }} | |
upload-pages-includes: | | |
default.css | |
index.html | |
# See "Github Pages" below | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
needs: flatter | |
permissions: | |
pages: write | |
id-token: write | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- name: GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v1 |