Skip to content

Commit d013fdb

Browse files
authored
Adding missing variable (#1310)
1 parent 34f4737 commit d013fdb

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

stack/.github/workflows/create-release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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 }}"
@@ -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

Comments
 (0)