Set up your GitHub Actions workflow with a specific version of ORAS
Go to file
Billy Zha 55b09e62f7
chore: update icon on marketplace ()
Signed-off-by: Billy Zha <jinzha1@microsoft.com>
2023-03-22 16:15:38 +08:00
.github bump!: update default version to 1.0.0 () 2023-03-21 16:43:54 +08:00
dist feat: implement setup-oras () 2023-01-21 01:05:00 +08:00
.gitignore feat: implement setup-oras () 2023-01-21 01:05:00 +08:00
CODEOWNERS chore: add shizhMSFT to CODEOWNERS and OWNERS.md () 2023-02-15 09:48:26 -06:00
CODE_OF_CONDUCT.md feat: implement setup-oras () 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 () 2023-02-15 09:48:26 -06:00
README.md doc: update doc to use released tag v1 () 2023-03-22 16:06:18 +08:00
action.yml chore: update icon on marketplace () 2023-03-22 16:15:38 +08:00
index.js feat: implement setup-oras () 2023-01-21 01:05:00 +08:00
package-lock.json feat: implement setup-oras () 2023-01-21 01:05:00 +08:00
package.json feat: implement setup-oras () 2023-01-21 01:05:00 +08:00

README.md

setup-oras

ORAS

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: oras.land/cli

Code of Conduct

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