Update CI deploy dependencies for arm

This commit is contained in:
Encotric
2025-02-14 20:50:48 +01:00
parent 9577d2c829
commit d9129fd362

View File

@@ -83,7 +83,7 @@ jobs:
# This is used by the next build job. # This is used by the next build job.
targets: targets:
name: create targets name: create targets
runs-on: ubuntu-latest runs-on: ubuntu-24.04
outputs: outputs:
matrix: ${{ steps.targets.outputs.matrix }} matrix: ${{ steps.targets.outputs.matrix }}
steps: steps:
@@ -257,7 +257,7 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
target: ${{ fromJson(needs.targets.outputs.matrix) }} target: ${{ fromJson(needs.targets.outputs.matrix) }}
runs-on: ubuntu-latest runs-on: ubuntu-24.04
permissions: permissions:
contents: read contents: read
packages: write packages: write
@@ -405,7 +405,7 @@ jobs:
tests: tests:
name: tests name: tests
if: contains(inputs.architecture, 'linux/amd64') if: contains(inputs.architecture, 'linux/amd64')
runs-on: ubuntu-latest runs-on: ubuntu-24.04
permissions: permissions:
contents: read contents: read
packages: read packages: read
@@ -462,10 +462,10 @@ jobs:
name: Deploy images name: Deploy images
# Deploying is not required for staging # Deploying is not required for staging
if: inputs.deploy == 'true' if: inputs.deploy == 'true'
runs-on: ubuntu-latest runs-on: ubuntu-24.04
needs: needs:
- build - build
# - build-arm - build-arm
- tests - tests
strategy: strategy:
fail-fast: false fail-fast: false
@@ -531,7 +531,7 @@ jobs:
#This job creates a tagged release. A tag is created for the pinned version x.y.z. The GH release refers to this tag. #This job creates a tagged release. A tag is created for the pinned version x.y.z. The GH release refers to this tag.
tag-release: tag-release:
if: inputs.release == 'true' if: inputs.release == 'true'
runs-on: ubuntu-latest runs-on: ubuntu-24.04
needs: needs:
- deploy - deploy
steps: steps: