Set up your GitHub Actions workflow with a specific version of ORAS
Go to file
Terry Howe 078aeb075c
doc: add SECURITY.md file (#16)
Signed-off-by: Terry Howe <tlhowe@amazon.com>
2023-08-31 10:06:24 +08:00
.github bump!: update default version to 1.0.0 (#6) 2023-03-21 16:43:54 +08:00
dist feat: implement setup-oras (#1) 2023-01-21 01:05:00 +08:00
.gitignore feat: implement setup-oras (#1) 2023-01-21 01:05:00 +08:00
CODEOWNERS chore: add shizhMSFT to CODEOWNERS and OWNERS.md (#3) 2023-02-15 09:48:26 -06:00
CODE_OF_CONDUCT.md feat: implement setup-oras (#1) 2023-01-21 01:05:00 +08:00
LICENSE Initial commit 2023-01-18 11:45:53 +08:00
OWNERS.md chore: add shizhMSFT to CODEOWNERS and OWNERS.md (#3) 2023-02-15 09:48:26 -06:00
README.md docs: fix broken link in README (#13) 2023-04-28 13:31:58 +08:00
SECURITY.md doc: add SECURITY.md file (#16) 2023-08-31 10:06:24 +08:00
action.yml chore: update icon on marketplace (#11) 2023-03-22 16:15:38 +08:00
index.js feat: implement setup-oras (#1) 2023-01-21 01:05:00 +08:00
package-lock.json feat: implement setup-oras (#1) 2023-01-21 01:05:00 +08:00
package.json feat: implement setup-oras (#1) 2023-01-21 01:05:00 +08:00

README.md

setup-oras

banner

Setup ORAS CLI on GitHub Actions runners.

Quick Start

Setup the oras CLI of the default version:

steps:
  - uses: oras-project/setup-oras@v1
  - run: oras version

Advanced Usage

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 v1.0.0.

steps:
  - uses: oras-project/setup-oras@v1
    with:
      version: 1.0.0
  - run: oras version

Docs

Documentation for the ORAS CLI is located on the project website.

Code of Conduct

This project has adopted the CNCF Code of Conduct. See CODE_OF_CONDUCT.md for further details.