Skip to content

Bump dawidd6/action-download-artifact from 3.0.0 to 3.1.1 #148

Bump dawidd6/action-download-artifact from 3.0.0 to 3.1.1

Bump dawidd6/action-download-artifact from 3.0.0 to 3.1.1 #148

Workflow file for this run

name: Flatpak build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout flatpak build templates
uses: actions/checkout@v4
with:
repository: project-imprimis/org.imprimis.Imprimis.flatpak
submodules: true
- name: Flatpak builder cache
id: cache-flatpak
uses: actions/cache@v4
env:
cache-name: cache-flatpak
with:
path: .flatpak-builder
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/org.imprimis.Imprimis.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Update package list
run: sudo apt-get update
- name: Install flatpak
run: sudo apt-get install flatpak flatpak-builder
- name: Add Flathub repository
run: sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
- name: Install flatpak SDK/dependencies
run: sudo flatpak install --assumeyes flathub org.freedesktop.Platform/x86_64/23.08 org.freedesktop.Sdk/x86_64/23.08 org.freedesktop.Platform.GL.default/x86_64/23.08
- name: Configure git
run: git config --global protocol.file.allow always
- name: Build flatpak
run: flatpak-builder --repo=local build-dir org.imprimis.Imprimis.json
- name: Bundle flatpak
run: flatpak build-bundle ./local imprimis.flatpak org.imprimis.Imprimis
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: imprimis-flatpak
path: ./imprimis.flatpak