From ebf117490ed754cdbf4a803f06b87434bf3974bb Mon Sep 17 00:00:00 2001 From: Saylor Berman Date: Tue, 11 Jun 2024 11:17:09 -0600 Subject: [PATCH] Fix conformance release upload 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. --- .github/workflows/conformance.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/conformance.yml b/.github/workflows/conformance.yml index 8443f7b01e..a68cc19bf7 100644 --- a/.github/workflows/conformance.yml +++ b/.github/workflows/conformance.yml @@ -151,7 +151,7 @@ jobs: working-directory: ./tests - name: Upload profile to release - if: ${{ inputs.k8s-version == 'latest' && startsWith(github.ref, 'refs/tags/') }} + if: ${{ startsWith(github.ref, 'refs/tags/') }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: gh release upload ${{ github.ref_name }} conformance-profile.yaml --clobber