Skip to content

Releases: cpunion/gh-semver-match

v1

08 Dec 14:32
a2b12cc
Compare
Choose a tag to compare

Usage

- uses: cpunion/gh-semver-match@v1
  with:
    token: ${{ github.token }} # Required for API access
    repos: |
      - repo: gotray/got
        version: ^1.0.0        # Match highest 1.x.x version
        var_name: GOT_VERSION
      - repo: another/repo
        version: ~2.1.0        # Match highest 2.1.x version
        var_name: ANOTHER_VERSION

- name: Matched version
   run: echo $GOT_VERSION