Optimize Docker stage caching by moving app copy after package installations #351
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| - main | |
| paths: | |
| - '_posts/**' | |
| - 'content/**' | |
| - 'assets/**' | |
| - 'src/**' | |
| - 'index.md' | |
| - '_includes/**' | |
| - '_data/**' | |
| - '_image_sources/**' | |
| - 'galleries/**' | |
| - 'navigation_and_indexes/**' | |
| - 'products/**' | |
| - '.github/workflows/on_push_to_master_test_and_deploy.yaml' | |
| - '.github/workflows/on_call_build_site.yaml' | |
| - '.github/workflows/on_call_staging_test.yaml' | |
| - 'package.json' | |
| - 'package-lock.json' | |
| - 'webpack.config.js' | |
| - 'favicon.png' | |
| - '.eleventy.*' | |
| - '_config.yml' | |
| - 'google*.html' | |
| - 'ads.txt' | |
| - 'Dockerfile' | |
| - 'docker-compose.yml' | |
| jobs: | |
| build_site: | |
| uses: ./.github/workflows/on_call_build_site.yaml | |
| staging_test: | |
| uses: ./.github/workflows/on_call_staging_test.yaml | |
| needs: build_site |