Fix reusable docker package workflow name call

This commit is contained in:
Deda 2024-03-15 18:51:40 +01:00
parent ca4fdc0a78
commit 76d98a5987

View File

@ -161,7 +161,7 @@ jobs:
Docker-v4:
if: ${{ (github.event.inputs.target_os == 'docker' || github.event.inputs.target_os == 'all') && github.event.inputs.toolchain == 'v4' }}
uses: ./.github/workflows/reusable_docker.yaml
uses: ./.github/workflows/reusable_docker_package.yaml
with:
os: "debian-11"
toolchain: ${{ github.event.inputs.toolchain }}
@ -175,7 +175,7 @@ jobs:
Docker-v5:
if: ${{ (github.event.inputs.target_os == 'docker' || github.event.inputs.target_os == 'all') && github.event.inputs.toolchain == 'v5' }}
uses: ./.github/workflows/reusable_docker.yaml
uses: ./.github/workflows/reusable_docker_package.yaml
with:
os: "debian-12"
toolchain: ${{ github.event.inputs.toolchain }}
@ -189,7 +189,7 @@ jobs:
Docker-v4-arm:
if: ${{ (github.event.inputs.target_os == 'docker-arm' || github.event.inputs.target_os == 'all') && github.event.inputs.toolchain == 'v4' }}
uses: ./.github/workflows/reusable_docker.yaml
uses: ./.github/workflows/reusable_docker_package.yaml
with:
os: "debian-11-arm"
toolchain: ${{ github.event.inputs.toolchain }}
@ -203,7 +203,7 @@ jobs:
Docker-v5-arm:
if: ${{ (github.event.inputs.target_os == 'docker-arm' || github.event.inputs.target_os == 'all') && github.event.inputs.toolchain == 'v5' }}
uses: ./.github/workflows/reusable_docker.yaml
uses: ./.github/workflows/reusable_docker_package.yaml
with:
os: "debian-12-arm"
toolchain: ${{ github.event.inputs.toolchain }}