mirror of
https://github.com/docker/setup-qemu-action.git
synced 2025-01-23 17:18:04 +01:00
Chocobo1
084b720a90
Trim off spaces in
platform
string
This allows users to specify platform in a more humane way, for example: ```yaml env: # equals to `linux/amd64, linux/arm/v6` platforms: > linux/amd64, linux/arm/v6 - uses: docker/setup-qemu-action@v2 with: platforms: ${{ env.PLATFORMS }} ``` Signed-off-by: Chocobo1 <Chocobo1@users.noreply.github.com>
About
GitHub Action to install QEMU static binaries.
Usage
name: ci
on:
push:
jobs:
qemu:
runs-on: ubuntu-latest
steps:
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
Customizing
inputs
Following inputs can be used as step.with
keys
Name | Type | Description |
---|---|---|
image |
String | QEMU static binaries Docker image (default tonistiigi/binfmt:latest ) |
platforms |
String | Platforms to install (e.g. arm64,riscv64,arm ; default all ) |
outputs
Following outputs are available
Name | Type | Description |
---|---|---|
platforms |
String | Available platforms (comma separated) |
Contributing
Want to contribute? Awesome! You can find information about contributing to this project in the CONTRIBUTING.md
Languages
TypeScript
59.8%
Dockerfile
26.5%
HCL
13.7%