Skip to content

Commit

Permalink
Test release 1
Browse files Browse the repository at this point in the history
  • Loading branch information
rluzuriaga committed Feb 17, 2024
1 parent 567ae77 commit 4414c2a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/experimental_create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
kernel_x64="${{ inputs.kernel_x64 }}"
kernel_x86="${{ inputs.kernel_x86 }}"
if [[ "$init_arm64" == "false" && "$init_x64" == "false" && "$init_x86" == "false" && "$kernel_arm64" == "false" && "$kernel_x64" == "false" && "$kernel_x86" == "false" ]]; then
echo "No kernel or init selected."
echo "No kernels or inits selected to build."
exit 1
fi
Expand Down Expand Up @@ -299,10 +299,10 @@ jobs:
- name: Create release body
run: |
body_text=""
if [ ${{ inputs.kernel_arm64 }} != "" || ${{ inputs.kernel_x64 }} != "" || ${{ inputs.kernel_x86 }} != "" ]; then
if [[ "${{ inputs.kernel_arm64 }}" == "true" || "${{ inputs.kernel_x64 }}" == "true" || "${{ inputs.kernel_x86 }}" == "true" ]]; then
body_text+="Linux kernel ${{ env.LINUX_KERNEL_VER}}"
fi
if [ ${{ inputs.init_arm64 }} != "" || ${{ inputs.init_x64 }} != "" || ${{ inputs.init_x86 }} != "" ]; then
if [[ "${{ inputs.init_arm64 }}" == "true" || "${{ inputs.init_x64 }}" == "true" || "${{ inputs.init_x86 }}" == "true" ]]; then
body_text+="\nBuildroot ${{ env.BUILDROOT_VER}}"
fi
Expand Down

0 comments on commit 4414c2a

Please sign in to comment.