Skip to content

Commit

Permalink
chore(ci): require major.minor in manifests (#4339)
Browse files Browse the repository at this point in the history
  • Loading branch information
czeslavo authored Jul 13, 2023
1 parent 2e0326d commit 5b4f886
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ jobs:
- name: Verify manifests have requested KIC tag
if: ${{ steps.semver_parser.outputs.prerelease == '' }}
env:
TAG: ${{ steps.semver_parser.outputs.fullversion }}
# We expect the tag used in manifests to be {major}.{minor} part of the version, e.g.
# for v2.10.3 we expect manifests to use 2.10 tag.
TAG: ${{ steps.semver_parser.outputs.major }}.${{ steps.semver_parser.outputs.minor }}
run: make verify.versions

build-push-images:
Expand Down

0 comments on commit 5b4f886

Please sign in to comment.