Releases: uraimo/run-on-arch-action
Releases · uraimo/run-on-arch-action
2.0.6
- Fixed typo in Alpine dockerfile
2.0.5
- Also include the workflow name when computing the container name.
2.0.4
- Fix: Lowercase the whole GitHub docker package registry path #2
2.0.3
- Fix: Lowercase the whole GitHub docker package registry path
2.0.2
- Improved dockerRunArgs handling
- Force docker container names to be lowercase (required by Github)
- New install parameter
2.0.1
Fixes containerName to prevent clashes in the GitHub docker registry.
2.0.0
A new release to incorporate the changes contributed by @elijahr:
Some new optional inputs:
- env: Environment variables to propagate to the container. YAML, but must begin with a | character. These variables will be available in both run and setup.
- shell: The shell to run commands with in the container. Default: /bin/sh on Alpine, /bin/bash for other distros.
- setup: Shell commands to execute on the host before running the container, such as creating directories for volume mappings.
githubToken: Your GitHub token, used for caching Docker images in your project's public package registry. Usually this would just be ${{ github.token }}. This speeds up builds and is highly recommended.
Other changes:
- Rename additionalArgs -> dockerRunArgs for clarity.
- Rename architecture -> arch, distribution -> distro for brevity.
- Fix Alpine (/bin/bash doesn't exist, so uses /bin/sh if distro matches alpine*).
- Improved docs, examples, tests and other fixes.
1.1.0
Added:
- Alpine:latest on all architectures.
- Reduced verbosity of internal apt sessions.
1.0.9
- Added Ubuntu 20.04 for armv7,aarch64,ppc64le,s390x.
- Updated container's internal environment variables mapping.
1.0.8
Added support for Fedora on arm64, ppc64le and s390x.