🚀 Enable building multiarch images

This commit is contained in:
Lars Gohr
2022-04-09 22:25:56 +02:00
parent 7a7d2b76d3
commit cbaa32c746
4 changed files with 72 additions and 5 deletions

View File

@@ -53,6 +53,9 @@ inputs:
no_push:
description: 'Set no_push to true if you want to prevent the action from pushing to a registry (default: false)'
required: false
platforms:
description: 'Use platforms for building multi-arch images'
required: false
outputs:
tag:
description: 'Is the tag, which was pushed'
@@ -85,4 +88,5 @@ runs:
INPUT_TAGS: ${{ inputs.tags }}
INPUT_TAG_NAMES: ${{ inputs.tag_names }}
INPUT_TAG_SEMVER: ${{ inputs.tag_semver }}
INPUT_NO_PUSH: ${{ inputs.no_push }}
INPUT_NO_PUSH: ${{ inputs.no_push }}
INPUT_PLATFORMS: ${{ inputs.platforms }}