From 7841d31d6b55668d2a718f914babcec2a81c0e2b Mon Sep 17 00:00:00 2001 From: Raphael Glon Date: Mon, 5 Aug 2024 17:10:47 +0200 Subject: [PATCH] improve Signed-off-by: Raphael Glon --- .../workflows/python-api-diffusers-cd.yaml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/workflows/python-api-diffusers-cd.yaml b/.github/workflows/python-api-diffusers-cd.yaml index d6ee7644..e30ea1b1 100644 --- a/.github/workflows/python-api-diffusers-cd.yaml +++ b/.github/workflows/python-api-diffusers-cd.yaml @@ -27,21 +27,22 @@ jobs: uses: docker/metadata-action@v5.5.1 with: images: ghcr.io/${{ env.CONTAINER_REPO }} - # - name: Set up QEMU - # uses: docker/setup-qemu-action@v1 + # Is this step useful ? Do we really support multi arch / cross compiling ? + - name: Set up QEMU + uses: docker/setup-qemu-action@v3.2.0 - name: Login to GitHub Container Registry uses: docker/login-action@v3.3.0 with: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5.1.1 - with: - python-version: "3.8" - - name: Install dependencies - run: | - pip install --upgrade pip + # - name: Set up Python ${{ matrix.python-version }} + # uses: actions/setup-python@v5.1.1 + # with: + # python-version: "3.8" + # - name: Install dependencies + # run: | + # pip install --upgrade pip - name: Build and push Docker image id: build-and-push uses: docker/build-push-action@v6.5.0