Skip to content

Commit

Permalink
feat: add specific flatpaks to dx images (#1732)
Browse files Browse the repository at this point in the history
  • Loading branch information
noelmiller authored Oct 2, 2024
1 parent 68a853e commit 85714c3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/reusable-build-iso.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,10 @@ jobs:
# Get list of refs from directory
FLATPAK_REFS_DIR=${{ github.workspace }}/${{ steps.generate-flatpak-dir-shortname.outputs.flatpak-dir-shortname }}
FLATPAK_REFS_DIR_LIST=$(cat ${FLATPAK_REFS_DIR}/* | tr '\n' ' ' )
DX_FLATPAK_REFS_DIR_LIST="$(cat dx_flatpaks/* | tr '\n' ' ' )"
if [[ ${{ env.IMAGE_NAME }} == *"-dx"* ]]; then
FLATPAK_REFS_DIR_LIST="${FLATPAK_REFS_DIR_LIST} ${DX_FLATPAK_REFS_DIR_LIST}"
fi
# Generate install script
cat << EOF > ${TEMP_FLATPAK_INSTALL_DIR}/script.sh
cat /temp_flatpak_install_dir/script.sh
Expand Down
1 change: 1 addition & 0 deletions dx_flatpaks/flatpaks
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
app/io.podman_desktop.PodmanDesktop/x86_64/stable

0 comments on commit 85714c3

Please sign in to comment.