mirror of
https://gitlab.cvh-server.de/skrause/flashcards.git
synced 2025-12-12 06:41:38 +01:00
21 lines
605 B
YAML
21 lines
605 B
YAML
docs:
|
|
image: 123marvin123/typst:latest
|
|
stage: build
|
|
script:
|
|
- typst compile docs/main.typ Flashcards.pdf
|
|
artifacts:
|
|
paths:
|
|
- ./Flashcards.pdf
|
|
|
|
flatpak:
|
|
image: quay.io/gnome_infrastructure/gnome-runtime-images:gnome-47
|
|
stage: build
|
|
variables:
|
|
APP_ID: "li.sopht.Flashcards"
|
|
BUNDLE: "${APP_ID}.flatpak"
|
|
MANIFEST: "${APP_ID}.json"
|
|
RUNTIME_REPO: "https://flathub.org/repo/flathub.flatpakrepo"
|
|
script:
|
|
- flatpak-builder --user --disable-rofiles-fuse app --repo=repo ${MANIFEST}
|
|
- flatpak build-bundle repo ${BUNDLE} --runtime-repo=${RUNTIME_REPO} ${APP_ID}
|