Two-Hearts / setup-oras

Set up your GitHub Actions workflow with a specific version of ORAS

Home Page:https://oras.land/cli

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

Set up your GitHub Actions workflow with a specific version of ORAS

https://oras.land/cli

License:Apache License 2.0


Languages

Language:TypeScript 100.0%