Skip to content

Commit

Permalink
Move source extraction to a separate job
Browse files Browse the repository at this point in the history
  • Loading branch information
kadykov committed Nov 20, 2024
1 parent 4198034 commit 7f27304
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down

0 comments on commit 7f27304

Please sign in to comment.