From ee6178b122f8a6bd6bcd8fe83262d67204a49b68 Mon Sep 17 00:00:00 2001 From: Abhijeet <41686026+abhvsn@users.noreply.github.com> Date: Mon, 14 Oct 2024 18:21:48 +0530 Subject: [PATCH] chore: Add server artifacts in ad hoc image builder (#36869) ## Description ### :mag: Cypress test results > [!CAUTION] > If you modify the content in this section, you are likely to disrupt the CI result for your PR. ## Communication Should the DevRel and Marketing teams inform users about this change? - [ ] Yes - [ ] No ## Summary by CodeRabbit - **Chores** - Updated the workflow for the Ad-hoc Docker Image to include a new step for preparing server artifacts, enhancing the packaging process. --- .github/workflows/ad-hoc-docker-image.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ad-hoc-docker-image.yml b/.github/workflows/ad-hoc-docker-image.yml index 38afa93839ae..30a8de48ea11 100644 --- a/.github/workflows/ad-hoc-docker-image.yml +++ b/.github/workflows/ad-hoc-docker-image.yml @@ -90,6 +90,16 @@ jobs: scripts/generate_info_json.sh fi + - name: Place server artifacts-es + run: | + run: | + if [[ -f scripts/prepare_server_artifacts.sh ]]; then + scripts/prepare_server_artifacts.sh + else + echo "No script found to prepare server artifacts" + exit 1 + fi + - name: Set up Depot CLI uses: depot/setup-action@v1