Skip to content

Commit

Permalink
fix: reference image_name from matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
p5 committed Aug 13, 2024
1 parent d3d6fc7 commit 33b79ca
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build_iso.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Get Flatpak dependencies
id: flatpak-dependencies
env:
IMAGE_FULL: ${{ env.IMAGE_REGISTRY }}/${{ inputs.image_name }}:${{ env.IMAGE_TAG }}
IMAGE_FULL: ${{ env.IMAGE_REGISTRY }}/${{ matrix.image_name }}:${{ env.IMAGE_TAG }}
shell: bash
run: |
set -euox pipefail
Expand All @@ -58,6 +58,8 @@ jobs:
FLATPAK_REFS+=("$line")
done < "${FLATPAK_REFS_DIR}/flatpaks.txt"
echo "Flatpak refs: ${FLATPAK_REFS[@]}"
# Generate installation script
cat <<EOF > "${TEMP_FLATPAK_INSTALL_DIR}/install-flatpaks.sh"
mkdir -p /flatpak/flatpak /flatpak/triggers
Expand Down

0 comments on commit 33b79ca

Please sign in to comment.