Skip to content

Commit

Permalink
feat: build images
Browse files Browse the repository at this point in the history
  • Loading branch information
kuroweb committed Sep 26, 2024
1 parent 1b2d5b1 commit 5ed8889
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
backend_ci:
needs: check_changes
if: ${{ needs.check_changes.outputs.backend_ci == 'true' }}
# if: ${{ needs.check_changes.outputs.backend_ci == 'true' }}
runs-on: ubuntu-20.04
steps:
- name: Checkout Repository
Expand All @@ -53,7 +53,7 @@ jobs:
needs:
- check_changes
- backend_ci
if: ${{ needs.check_changes.outputs.backend_cd == 'true' }}
# if: ${{ needs.check_changes.outputs.backend_cd == 'true' }}
runs-on: ubuntu-20.04
steps:
- name: Checkout Repository
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
backend_playwright_cd:
needs: check_changes
if: ${{ needs.check_changes.outputs.backend_playwright_cd == 'true' }}
# if: ${{ needs.check_changes.outputs.backend_playwright_cd == 'true' }}
runs-on: ubuntu-20.04
steps:
- name: Checkout Repository
Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
frontend_cd:
needs: check_changes
if: ${{ needs.check_changes.outputs.frontend_cd == 'true' }}
# if: ${{ needs.check_changes.outputs.frontend_cd == 'true' }}
runs-on: ubuntu-20.04
steps:
- name: Checkout Repository
Expand Down

0 comments on commit 5ed8889

Please sign in to comment.