From 7f273049d214f5b1cc07d25a1efa985859b422f8 Mon Sep 17 00:00:00 2001 From: Aleksandr Kadykov Date: Wed, 20 Nov 2024 18:08:41 +0000 Subject: [PATCH] Move source extraction to a separate job --- .github/workflows/ci.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6f7271b..c8e5878 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,6 +50,13 @@ jobs: cache-from: type=registry,ref=${{ env.IMAGE_TAG_TESTING }} cache-to: type=inline + source: + name: Extract example source files + needs: pre_commit + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Upload source files uses: actions/upload-artifact@v4 with: @@ -62,7 +69,9 @@ jobs: render: name: Render default files and update Docker tags - needs: docker + needs: + - docker + - source runs-on: ubuntu-latest steps: - name: Download source files