build: update more

Signed-off-by: AuxXxilium <info@auxxxilium.tech>
This commit is contained in:
AuxXxilium
2024-12-24 17:13:27 +01:00
parent 9eb611b388
commit d9cd6ded90

View File

@@ -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 }}