Permalink
Cannot retrieve contributors at this time
58 lines (40 sloc)
2.02 KB
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
docker-qemu-action/README.md
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[](https://github.com/docker/setup-qemu-action/releases/latest) | |
[](https://github.com/marketplace/actions/docker-setup-qemu) | |
[](https://github.com/docker/setup-qemu-action/actions?workflow=ci) | |
## About | |
GitHub Action to install [QEMU](https://github.com/qemu/qemu) static binaries. | |
 | |
___ | |
* [Usage](#usage) | |
* [Customizing](#customizing) | |
* [inputs](#inputs) | |
* [outputs](#outputs) | |
* [Contributing](#contributing) | |
## Usage | |
```yaml | |
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`](https://hub.docker.com/r/tonistiigi/binfmt/tags)) | | |
| `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](/.github/CONTRIBUTING.md) |