1
0
mirror of https://gitlab.cvh-server.de/skrause/flashcards.git synced 2025-12-12 11:01:38 +01:00
Files
flashcards/.gitlab-ci.yml
2025-02-05 23:47:55 +01:00

19 lines
552 B
YAML

build:docs:
image: 123marvin123/typst:latest
script:
- typst compile docs/main.typ Flashcards.pdf
artifacts:
paths:
- ./Flashcards.pdf
build:flatpak:
image: quay.io/gnome_infrastructure/gnome-runtime-images:gnome-47
variables:
APP_ID: "li.sopht.Flashcards"
BUNDLE: "${APP_ID}.flatpak"
REPO: "repo"
RUNTIME_REPO: "https://flathub.org/repo/flathub.flatpakrepo"
script:
- flatpak-builder --repo ${REPO} app ${APP_ID}.json
- flatpak build-bundle --runtime-repo=${RUNTIME_REPO} ${REPO} ${BUNDLE} ${APP_ID}