Skip to content

Commit c8b628f

Browse files
authored
Fix conformance release upload (#2126)
Problem: A recent change in a CI variable prevented the conformance profile from being uploaded at release time. Solution: Remove the check for k8s-version. It shouldn't matter which version of k8s the tests were run on for the release conformance profile.
1 parent 94b9420 commit c8b628f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/conformance.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ jobs:
151151
working-directory: ./tests
152152

153153
- name: Upload profile to release
154-
if: ${{ inputs.k8s-version == 'latest' && startsWith(github.ref, 'refs/tags/') }}
154+
if: ${{ startsWith(github.ref, 'refs/tags/') }}
155155
env:
156156
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
157157
run: gh release upload ${{ github.ref_name }} conformance-profile.yaml --clobber

0 commit comments

Comments
 (0)