Setup ORAS CLI on GitHub Actions runners.
Setup the oras
CLI of the default version:
steps:
- uses: oras-project/setup-oras@main
- run: oras version
Install a specific version of the oras
CLI by specifying the input version
without the prefix v
.
Supported versions can be found at oras
releases.
For example, install oras
version v0.16.0
.
steps:
- uses: oras-project/setup-oras@main
with:
version: 0.16.0
- run: oras version
Documentation for the ORAS CLI is located on the project website: oras.land/cli
This project has adopted the CNCF Code of Conduct. See CODE_OF_CONDUCT.md for further details.