Skip to content

Commit

Permalink
chore(ci): fix build-iso workflow/justfile (#1904)
Browse files Browse the repository at this point in the history
  • Loading branch information
m2Giles authored Nov 7, 2024
1 parent c8c6d6d commit c2e7fb5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/reusable-build-iso.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ jobs:
id: generate-flatpak-dir-shortname
shell: bash
run: |
if [[ "${{ matrix.brand_name }}" =~ bluefin ]]; then
if [[ "${{ env.IMAGE_NAME }}" =~ bluefin ]]; then
FLATPAK_DIR_SHORTNAME="bluefin_flatpaks"
elif [[ "${{ matrix.brand_name }}" =~ aurora ]]; then
elif [[ "${{ env.IMAGE_NAME }}" =~ aurora ]]; then
FLATPAK_DIR_SHORTNAME="aurora_flatpaks"
fi
echo "flatpak-dir-shortname=${FLATPAK_DIR_SHORTNAME}" >> $GITHUB_OUTPUT
Expand Down
2 changes: 1 addition & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ build-iso image="bluefin" tag="latest" flavor="main" ghcr="0":
# Build ISO
iso_build_args=()
iso_build_args+=("--rm" "--privileged" "--pull=newer")
iso_build_args+=(--volume "/var/lib/containers/storage:/var/lib/containers/storage:ro")
iso_build_args+=(--volume "/var/lib/containers/storage:/var/lib/containers/storage")
iso_build_args+=(--volume "${PWD}:/github/workspace/")
iso_build_args+=(ghcr.io/jasonn3/build-container-installer:latest)
iso_build_args+=(ARCH="x86_64")
Expand Down

0 comments on commit c2e7fb5

Please sign in to comment.