From d12c393abcda426d79cb1344294b49ef6cdc5824 Mon Sep 17 00:00:00 2001 From: Thales Macedo Garitezi Date: Mon, 29 May 2023 16:46:26 -0300 Subject: [PATCH] ci(docker): don't fetch deps outside docker build context The dependencies outside EMQX are symlinked with full paths from the GH action environment. When we run `buildx`, the paths are all wrong, and the documentation generation fails when it tries to prepare the library paths. --- .github/workflows/build_and_push_docker_images.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/build_and_push_docker_images.yaml b/.github/workflows/build_and_push_docker_images.yaml index 64fc6d5b0..8c426b2dc 100644 --- a/.github/workflows/build_and_push_docker_images.yaml +++ b/.github/workflows/build_and_push_docker_images.yaml @@ -97,7 +97,6 @@ jobs: env: PROFILE: ${{ steps.get_profile.outputs.PROFILE }} run: | - PROFILE=$PROFILE make -C source deps-$PROFILE zip -ryq source.zip source/* source/.[^.]* - uses: actions/upload-artifact@v3 with: