Skip to content

Commit

Permalink
fix: ci nextjs_bundle_analysis 빌드 key 설정 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-dong-su committed Mar 4, 2024
1 parent b35053b commit adf3494
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ jobs:

outputs:
dependency_cache_key: ${{ needs.job_install_dependencies.outputs.dependency_cache_key }}
build_cache_key: ${{ env.BUILD_CACHE_KEY }}

job_continuous_integration:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -131,11 +132,12 @@ jobs:
with:
path: ${{ env.CACHED_DEPENDENCY_PATHS }}
key: ${{ needs.job_build.outputs.dependency_cache_key }}

- name: Check build cache
uses: actions/cache@v3
with:
path: ${{ env.CACHED_BUILD_PATHS }}
key: ${{ env.BUILD_CACHE_KEY }}
key: ${{ needs.job_build.outputs.build_cache_key }}

- name: Analyze bundle sizes
uses: transferwise/actions-next-bundle-analyzer@master
Expand Down

0 comments on commit adf3494

Please sign in to comment.