From e8bf604c167543b4b20e1e856a3e1211836c696e Mon Sep 17 00:00:00 2001 From: Tyler Ball Date: Tue, 21 Feb 2023 14:50:25 -0800 Subject: [PATCH] chore(release): Boolean variables are passed as strings by Github Actions Performing this comparison actually turns a "true" string into a false. We already check for a string when consuming this environment variable so there is no need to perform it here. Signed-off-by: Tyler Ball --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6222b5f2cc4..777710b45d9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -476,7 +476,7 @@ jobs: - name: Upload Packages to PULP env: - OFFICIAL_RELEASE: ${{ github.event.inputs.official == true }} + OFFICIAL_RELEASE: ${{ github.event.inputs.official }} PULP_HOST: https://api.download.konghq.com PULP_USERNAME: admin # PULP_PASSWORD: ${{ secrets.PULP_DEV_PASSWORD }}