Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Heavyrisem committed Feb 27, 2024
1 parent dfbbb2f commit 4bb3cd6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker-build-reuseable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
if: ${{ inputs.type == 'frontend'}}
with:
name: node-build-artifact-${{ env.REF_NAME_SHA }}
path: ./apps/frontend/dist
path: ./apps/frontend/.next

- name: Download Build Artifact
uses: actions/download-artifact@v3
Expand All @@ -41,9 +41,9 @@ jobs:
name: node-build-artifact-${{ env.REF_NAME_SHA }}
path: ./apps/backend/dist

- name: Check dist hash
- name: Check dist .next
if: ${{ inputs.type == 'frontend'}}
run: echo ${{ hashFiles('./apps/frontend/dist/**/*') }}
run: echo ${{ hashFiles('./apps/frontend/.next/**/*') }}

- name: Check dist hash
if: ${{ inputs.type == 'backend'}}
Expand Down

0 comments on commit 4bb3cd6

Please sign in to comment.