From 359a56e8ee36c0837f21f07dbc04f4a9b916a582 Mon Sep 17 00:00:00 2001 From: Tyler Ball <2481463+tyler-ball@users.noreply.github.com> Date: Thu, 23 Feb 2023 13:26:46 -0800 Subject: [PATCH] chore(release): Boolean variables are passed as strings by Github Actions (#10343) 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 (cherry picked from commit 999f5bea44aa3092b61541a40adf1be81c6490b9) --- .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 5b4c17ab82b2..359f8b6ac536 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -471,7 +471,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 }}