@@ -450,6 +450,7 @@ jobs:
450450 id : hashcode_pattern
451451 run : |
452452 os_codename="${{ needs.preparation.outputs.os_codename }}"
453+ os_name="${{ needs.preparation.outputs.os_name }}"
453454 stack_type="${{ matrix.stacks.stack_type }}"
454455 repo_type="${{ needs.preparation.outputs.repo_type }}"
455456 build_image="${{ matrix.stacks.build_image }}"
@@ -631,7 +632,7 @@ jobs:
631632
632633 # https://github.com/docker/setup-qemu-action
633634 - name : Set up QEMU
634- uses : docker/setup-qemu-action@v3
635+ uses : docker/setup-qemu-action@v4
635636
636637 - name : Create stack ${{ matrix.stacks.name }}
637638 id : create-stack
@@ -724,7 +725,7 @@ jobs:
724725 - name : Write Empty Previous Receipts
725726 if : ${{ steps.check_previous.outputs.exists == 'false' || matrix.arch.is_new == true || matrix.stacks.is_new == true }}
726727 run : |
727- if [ ${{ matrix.stacks.create_build_image }} == true ]; then
728+ if [ " ${{ matrix.stacks.create_build_image }}" == " true" ]; then
728729 if [ ! -f "./${{ matrix.arch.name }}-previous-build-receipt-${{ matrix.stacks.name }}" ]; then
729730 echo '{"components":[]}' > "./${{ matrix.arch.name }}-previous-build-receipt-${{ matrix.stacks.name }}"
730731 fi
@@ -999,7 +1000,7 @@ jobs:
9991000
10001001 if [ "${build_added:-0}" -eq 0 ] && [ "${build_modified:-0}" -eq 0 ] && [ "${run_added}" -eq 0 ] && [ "${run_modified}" -eq 0 ]; then
10011002 echo "No packages changed."
1002- # We ommit setting "packages_changed" variable to false,
1003+ # We omit setting "packages_changed" variable to false,
10031004 # as there is an edge case scenario overriding any true value due to parallelization
10041005 else
10051006 echo "Packages changed."
0 commit comments