Skip to content

Commit

Permalink
Substitute changing directory with passing abs path
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmadSaeedGoda committed Mar 22, 2024
1 parent d0d7a5d commit a4d9d7c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/render-build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:

- name: Build and push Docker image
run: |
cd ./src/services/auth && docker build -t ahmadsaeedgoda/ld_rr:render-auth-service -f Dockerfile.staging.uat .
docker build -t ahmadsaeedgoda/ld_rr:render-auth-service -f ./src/services/auth/Dockerfile.staging.uat ./src/services/auth
docker push ahmadsaeedgoda/ld_rr:render-auth-service
- name: Generate Public/Private Keys for JWT auth functionality
run: |
openssl genrsa -out ./certs/private.pem
openssl rsa -in ./certs/private.pem -pubout -out ./certs/public.pem
openssl genrsa -out ./src/services/auth/certs/private.pem
openssl rsa -in ./src/services/auth/certs/private.pem -pubout -out ./certs/public.pem
- name: Trigger Render Deploy Hook
run: |
Expand Down

0 comments on commit a4d9d7c

Please sign in to comment.