From d9cd6ded90ef30f66ac786a429139084f4fc7c86 Mon Sep 17 00:00:00 2001 From: AuxXxilium Date: Tue, 24 Dec 2024 17:13:27 +0100 Subject: [PATCH] build: update more Signed-off-by: AuxXxilium --- .github/workflows/build.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bad407a8..911fa66c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -53,7 +53,7 @@ jobs: uses: actions/checkout@main - name: Delete releases and workflows runs - if: ${{ inputs.clean == true }} + if: ${{ inputs.clean }} uses: ophub/delete-releases-workflows@main with: delete_releases: true @@ -113,7 +113,7 @@ jobs: # Build incremental - name: Build Next Image - if: ${{ inputs.next == true }} + if: ${{ inputs.next }} run: | . scripts/func.sh @@ -175,7 +175,7 @@ jobs: # Zip image and generate checksum - name: Pack Next Image - if: ${{ inputs.next == true }} + if: ${{ inputs.next }} run: | if [ -n "${{ env.ARC_VERSION }}" ]; then zip -9 "arc-${{ env.ARC_VERSION }}-${{ env.ARC_BRANCH }}.img.zip" arc.img @@ -193,7 +193,7 @@ jobs: # Build incremental - name: Build Stable Image - if: ${{ inputs.stable == true }} + if: ${{ inputs.stable }} run: | . scripts/func.sh @@ -255,7 +255,7 @@ jobs: # Zip image and generate checksum - name: Pack Stable Image - if: ${{ inputs.stable == true }} + if: ${{ inputs.stable }} run: | if [ -n "${{ env.ARC_VERSION }}" ]; then zip -9 "arc-${{ env.ARC_VERSION }}-${{ env.ARC_BRANCH }}.img.zip" arc.img @@ -280,12 +280,12 @@ jobs: - ${{ inputs.notice }} ### Information: - - Full Changelog is available in my Discord + - Changelog is available in my Discord - Discord Account for Arc Patch needed ### Versions: - ${{ inputs.stable && '- stable: Stable Image (Full Image, all dependencies are included, less hardware support)' || '' }} - ${{ inputs.next && '- next: Next Image (Full Image, all dependencies are included, more hardware support, new features to test)' || '' }} + ${{ inputs.stable && '- Stable: Full Image, all dependencies are included, reduced hardware support (if there is a Next image)' || '' }} + ${{ inputs.next && '- Next: Full Image, all dependencies are included, more hardware support, new features to test' || '' }} ### Dependencies: - Addons: ${{ env.ADDONTAG }} @@ -294,8 +294,8 @@ jobs: - Patches: ${{ env.PATCHTAG }} - Custom: ${{ env.CUSTOMTAG }} - LKMs: ${{ env.LKMTAG }} - - Buildroot Stable: ${{ env.BRSTAG }} - - Buildroot Next: ${{ env.BRXTAG }} + ${{ inputs.stable && format('- Buildroot Stable: {0}', env.BRSTAG) || '' }} + ${{ inputs.next && format('- Buildroot Next: {0}', env.BRXTAG) || '' }} ### Release - ${{ env.BUILD_TIME }}