diff --git a/.github/workflows/buildCPAN.yaml b/.github/workflows/buildCPAN.yaml index 828def1ab..ca09b3b0a 100644 --- a/.github/workflows/buildCPAN.yaml +++ b/.github/workflows/buildCPAN.yaml @@ -19,9 +19,8 @@ on: type: choice options: - amd64 - # not supported by Github yet, but would succees using ACT on Apple Silicon - # - arm64 - # - arm/v7 + - arm64 + - arm/v7 required: true default: amd64 module: @@ -32,7 +31,7 @@ on: jobs: buildCPAN: name: Build Perl CPAN modules - runs-on: ubuntu-latest + runs-on: ${{ inputs.platform == 'amd64' && 'ubuntu-latest' || 'ubuntu-latest-arm' }} steps: - uses: actions/checkout@v4