mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-22 14:05:39 +00:00
14 lines
491 B
Bash
14 lines
491 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# This script is building the flatpak is the needed files are already downloaded
|
||
|
|
||
|
git config --global protocol.file.allow always
|
||
|
mkdir -vp ${GITHUB_WORKSPACE}/local
|
||
|
mkdir -vp ${GITHUB_WORKSPACE}/retrodeck-flatpak-cooker
|
||
|
flatpak-builder --user --force-clean \
|
||
|
--install-deps-from=flathub \
|
||
|
--install-deps-from=flathub-beta \
|
||
|
--repo=${GITHUB_WORKSPACE}/local \
|
||
|
--disable-download \
|
||
|
${GITHUB_WORKSPACE}/retrodeck-flatpak-cooker \
|
||
|
net.retrodeck.retrodeck.yml
|