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/19 23:34:57 UTC

(superset) 03/06: build always but push only if secrets available + rename

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

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

commit ff839f774c48515f0489eabc5010217c710b0a28
Author: sebastianliebscher <li...@protonmail.ch>
AuthorDate: Sun Oct 8 12:15:39 2023 +0200

    build always but push only if secrets available + rename
---
 .github/workflows/docker.yml | 16 ++++++----------
 1 file changed, 6 insertions(+), 10 deletions(-)

diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml
index b86141c70c..b2dee94810 100644
--- a/.github/workflows/docker.yml
+++ b/.github/workflows/docker.yml
@@ -1,4 +1,4 @@
-name: Docker
+name: Build
 
 on:
   release:
@@ -29,9 +29,8 @@ jobs:
 
 
   build-lean-image:
-    name: Build ${{ matrix.image.version }} lean image
+    name: ${{ matrix.image.version }} lean image
     needs: config
-    if: needs.config.outputs.has-secrets
     runs-on: ubuntu-latest
     strategy:
       fail-fast: false
@@ -95,9 +94,8 @@ jobs:
 
 
   build-dev-image:
-    name: Build dev image
+    name: dev image
     needs: config
-    if: needs.config.outputs.has-secrets
     runs-on: ubuntu-latest
     steps:
       - name: Checkout
@@ -151,9 +149,8 @@ jobs:
 
 
   build-websocket-image:
-    name: Build websocket image
+    name: websocket image
     needs: config
-    if: needs.config.outputs.has-secrets
     runs-on: ubuntu-latest
     steps:
       - name: Checkout
@@ -206,9 +203,8 @@ jobs:
 
 
   build-dockerize-image:
-    name: Build Dockerize image
+    name: dockerize image
     needs: config
-    if: needs.config.outputs.has-secrets
     runs-on: ubuntu-latest
     steps:
       - name: Checkout
@@ -259,7 +255,7 @@ jobs:
 
   # build Dockerfile 'ci' target, save to archive and upload as artifact
   build-ephemeral-image:
-    name: Build ephemeral env image
+    name: ephemeral env image
     needs: config
     if: github.event_name == 'pull_request'
     runs-on: ubuntu-latest