Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 688 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 688 Bytes

Gino Keva list action

This action invokes Gino Keva to list all key/value pairs stored in Git notes.

To set key/values, the corresponding gino-keva-set-action can be used.

Outputs

All key/values will be available as output of this action

Example usage

- uses: actions/checkout@v2
  with: { fetch-depth: 50 } # Some history is required to enable search for most recent git note

- name: Set component versions in environment
  uses: wyarde/gino-keva-list-action@main
  id: versions

# Key/values can now be accessed using ${{ steps.versions.outputs.<key> }}
- ...