Skip to content

Commit

Permalink
Update hirease-organization-ci.yml
Browse files Browse the repository at this point in the history
Signed-off-by: menna samir <[email protected]>
  • Loading branch information
Menna-Sammir authored Jan 12, 2025
1 parent d20299e commit ae671cb
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/hirease-organization-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,10 +160,14 @@ jobs:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}

steps:
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Debug Directory Structure
run: |
ls -R # Debugging step to list files and directories
- name: Setup Node.js
uses: actions/setup-node@v3
with:
Expand Down Expand Up @@ -193,14 +197,16 @@ jobs:

- name: Build and Push Mono-Client Docker Image
run: |
docker build -t ghcr.io/hirease/mono-client:latest -f ./FrontEnd/Dockerfile .
cd FrontEnd # Change to the FrontEnd directory
docker build -t ghcr.io/hirease/mono-client:latest -f ./Dockerfile .
docker push ghcr.io/hirease/mono-client:latest
- name: Build and Push Mono-Server Docker Image
run: |
docker build -t ghcr.io/hirease/mono-server:latest -f ./back-end/Dockerfile .
cd back-end # Change to the back-end directory
docker build -t ghcr.io/hirease/mono-server:latest -f ./Dockerfile .
docker push ghcr.io/hirease/mono-server:latest
sync-docker:
runs-on: ubuntu-latest
needs: [setup, eslint, prettier, commit, test, build]
Expand Down

0 comments on commit ae671cb

Please sign in to comment.