You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ma...@apache.org on 2024/02/02 02:12:47 UTC

(superset) 01/01: fix(ci): typo in my bash script

This is an automated email from the ASF dual-hosted git repository.

maximebeauchemin pushed a commit to branch typo-typo
in repository https://gitbox.apache.org/repos/asf/superset.git

commit 7de57bfbb671dc99f1371c8dfdee64d8d55357b0
Author: Maxime Beauchemin <ma...@gmail.com>
AuthorDate: Thu Feb 1 18:10:50 2024 -0800

    fix(ci): typo in my bash script
    
    I couldn't fin a proper way to test the `workflow_dispatch` even,
    even from the gh CLI, so I had to test it using other events in my
    branch (on:pull_request), but never tested the inside of my `if` in
    bash.
    
    Anyhow, was flying blind, but I think this time it should work.
---
 .github/workflows/docker-release.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/docker-release.yml b/.github/workflows/docker-release.yml
index 0d0770db28..b0f5321ccb 100644
--- a/.github/workflows/docker-release.yml
+++ b/.github/workflows/docker-release.yml
@@ -75,7 +75,7 @@ jobs:
           FORCE_LATEST=""
           if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then
             # in the case of a manually-triggered run, read release from input
-            RELEASE ="${{ github.event.inputs.release }}"
+            RELEASE="${{ github.event.inputs.release }}"
             if [ "${{ github.event.inputs.force-latest }}" = "true" ]; then
               FORCE_LATEST="--force-latest"
             fi