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/01/25 00:47:06 UTC

(superset) branch test_docker_action created (now 025fc70da1)

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

maximebeauchemin pushed a change to branch test_docker_action
in repository https://gitbox.apache.org/repos/asf/superset.git


      at 025fc70da1 fix(chore): docker github action won't trigger

This branch includes the following new commits:

     new 025fc70da1 fix(chore): docker github action won't trigger

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



(superset) 01/01: fix(chore): docker github action won't trigger

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 025fc70da1cda4cd135b3b91ed3c0a26b22fda4b
Author: Maxime Beauchemin <ma...@gmail.com>
AuthorDate: Wed Jan 24 16:46:47 2024 -0800

    fix(chore): docker github action won't trigger
---
 .github/workflows/docker.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml
index 1a43ffdde3..d7c60bd58d 100644
--- a/.github/workflows/docker.yml
+++ b/.github/workflows/docker.yml
@@ -20,10 +20,10 @@ jobs:
           DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
         run: |
           if [[ -n "$DOCKERHUB_USER" && -n "$DOCKERHUB_TOKEN" ]]; then
-            echo "has-secrets=true" >> "$GITHUB_ENV"
+            echo "has-secrets=true" >> "$GITHUB_OUTPUT"
             echo "has secrets!"
           else
-            echo "has-secrets=false" >> "$GITHUB_ENV"
+            echo "has-secrets=false" >> "$GITHUB_OUTPUT"
             echo "no secrets!"
           fi
   docker-build: