mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-22 05:55:38 +00:00
96a6abf1ed
Updated to use double brackets instead of single. Shortened `mkdir` using expansion for simplicity. Updated script so that all variables are properly quoted.
24 lines
654 B
Bash
Executable file
24 lines
654 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# This script is downloading the needed files to prepare the manifest build
|
|
|
|
git config --global protocol.file.allow always
|
|
|
|
if [[ "${GITHUB_REF##*/}" == "main" ]]; then
|
|
BUNDLE_NAME="RetroDECK.flatpak"
|
|
FOLDER=retrodeck-flatpak-cooker
|
|
else
|
|
BUNDLE_NAME="RetroDECK-cooker.flatpak"
|
|
FOLDER=retrodeck-flatpak-cooker
|
|
fi
|
|
|
|
mkdir -vp "${GITHUB_WORKSPACE}"/{local,retrodeck-flatpak-cooker}
|
|
|
|
flatpak-builder --user --force-clean \
|
|
--install-deps-from=flathub \
|
|
--install-deps-from=flathub-beta \
|
|
--repo="${GITHUB_WORKSPACE}/local" \
|
|
--download-only \
|
|
"${GITHUB_WORKSPACE}/${FOLDER}" \
|
|
net.retrodeck.retrodeck.yml
|