name: Build & publish docker images on: push: branches: - "master" - "[0-9].[0-9]*" pull_request: branches: - "master" concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }} cancel-in-progress: true jobs: setup_matrix: runs-on: ubuntu-latest outputs: matrix_config: ${{ steps.set_matrix.outputs.matrix_config }} steps: - id: set_matrix run: | MATRIX_CONFIG=$(if [ "${{ github.event_name }}" == "pull_request" ]; then echo '["dev"]'; else echo '["dev", "lean", "py310", "websocket", "dockerize"]'; fi) echo "matrix_config=${MATRIX_CONFIG}" >> $GITHUB_OUTPUT echo $GITHUB_OUTPUT docker-build: name: docker-build needs: setup_matrix runs-on: ubuntu-latest strategy: matrix: build_preset: ${{fromJson(needs.setup_matrix.outputs.matrix_config)}} fail-fast: false env: DOCKERHUB_USER: ${{ secrets.DOCKERHUB_USER }} DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} steps: - name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )" uses: actions/checkout@v4 with: persist-credentials: false - name: Check for file changes id: check uses: ./.github/actions/change-detector/ with: token: ${{ secrets.GITHUB_TOKEN }} - name: Set up QEMU if: steps.check.outputs.python || steps.check.outputs.frontend || steps.check.outputs.docker uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx if: steps.check.outputs.python || steps.check.outputs.frontend || steps.check.outputs.docker uses: docker/setup-buildx-action@v3 - name: Try to login to DockerHub if: steps.check.outputs.python || steps.check.outputs.frontend || steps.check.outputs.docker continue-on-error: true uses: docker/login-action@v3 with: username: ${{ secrets.DOCKERHUB_USER }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Setup supersetbot if: steps.check.outputs.python || steps.check.outputs.frontend || steps.check.outputs.docker uses: ./.github/actions/setup-supersetbot/ - name: Build Docker Image if: steps.check.outputs.python || steps.check.outputs.frontend || steps.check.outputs.docker shell: bash env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | # Single platform builds in pull_request context to speed things up if [ "${{ github.event_name }}" = "push" ]; then PLATFORM_ARG="--platform linux/arm64 --platform linux/amd64" elif [ "${{ github.event_name }}" = "pull_request" ]; then PLATFORM_ARG="--platform linux/amd64" fi supersetbot docker \ --preset ${{ matrix.build_preset }} \ --context "$EVENT" \ --context-ref "$RELEASE" $FORCE_LATEST \ $PLATFORM_ARG