Skip to content

Commit

Permalink
Fix platform names. Docker uses different names than Linux.
Browse files Browse the repository at this point in the history
  • Loading branch information
mherger committed Jan 24, 2024
1 parent 0fe0223 commit 97e76ba
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/buildCPAN.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ on:
type: choice
options:
- amd64
- aarch64
- armv7
- arm64
- arm/v7
required: true
default: amd64
module:
Expand Down Expand Up @@ -57,5 +57,7 @@ jobs:
uses: actions/upload-artifact@v3
if: ${{ !env.ACT }}
with:
name: ${{ inputs.module && inputs.module || 'CPAN'}}-${{ inputs.flavour }}${{ inputs.tag && format('-{0}', inputs.tag) || ''}}-${{ inputs.platform }}
# TODO - find a way to remove the colons from the module name, and slash from platform
# name: ${{ inputs.module && inputs.module || 'CPAN'}}-${{ inputs.flavour }}${{ inputs.tag && format('-{0}', inputs.tag) || ''}}-${{ inputs.platform }}
name: CPAN-${{ inputs.flavour }}${{ inputs.tag && format('-{0}', inputs.tag) || ''}}
path: CPAN/build/arch/5.*/*/auto/

0 comments on commit 97e76ba

Please sign in to comment.