mirror of
https://github.com/docker/setup-qemu-action.git
synced 2025-10-31 01:00:11 +08:00
Gitea Actions 多平台支持组件 Github 镜像
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>
|
||
|---|---|---|
| .github | ||
| dist | ||
| src | ||
| .dockerignore | ||
| .editorconfig | ||
| .eslintrc.json | ||
| .gitattributes | ||
| .gitignore | ||
| .prettierrc.json | ||
| action.yml | ||
| dev.Dockerfile | ||
| docker-bake.hcl | ||
| LICENSE | ||
| package.json | ||
| README.md | ||
| tsconfig.json | ||
| yarn.lock | ||
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
