Skip to content

Commit f555e1f

Browse files
author
marci
committed
refactor: Aktualisierung des Flatpak-Bau-Workflows zur Installation von Abhängigkeiten
1 parent 9fa5b11 commit f555e1f

File tree

1 file changed

+5
-10
lines changed

1 file changed

+5
-10
lines changed

.github/workflows/flatpak-build.yml

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,17 @@ jobs:
1616
- name: Checkout repository
1717
uses: actions/checkout@v4
1818

19-
- name: Setup Flatpak
20-
uses: flatpak/setup-flatpak@v1
21-
with:
22-
flatpak-version: latest
19+
- name: Install dependencies
20+
run: |
21+
sudo apt-get update
22+
sudo apt-get install -y flatpak flatpak-builder python3-pip python3-setuptools
2323
24-
- name: Install Flatpak dependencies
24+
- name: Setup Flatpak
2525
run: |
2626
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
2727
flatpak install -y flathub org.freedesktop.Platform//23.08
2828
flatpak install -y flathub org.freedesktop.Sdk//23.08
2929
30-
- name: Install Python dependencies
31-
run: |
32-
sudo apt-get update
33-
sudo apt-get install -y python3-pip python3-setuptools
34-
3530
- name: Build Flatpak package
3631
run: |
3732
chmod +x build_flatpak.sh

0 commit comments

Comments
 (0)