Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
4rthem committed Nov 22, 2023
1 parent 0b28dff commit 2ac9593
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Build and Push
uses: docker/build-push-action@v4
with:
context: ${{ inputs.withLibs && "./" || inputs.context }}
context: ${{ inputs.withLibs && './' || inputs.context }}
file: ${{ inputs.context }}/Dockerfile
target: ${{ inputs.target }}
push: true
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build_api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Build and Push API PHP
uses: docker/build-push-action@v4
with:
context: ${{ inputs.withLibs && "./" || inputs.context }}
context: ${{ inputs.withLibs && './' || inputs.context }}
file: ${{ inputs.context }}/Dockerfile
target: api-php
push: true
Expand All @@ -57,7 +57,7 @@ jobs:
- name: Build and Push API NGINX
uses: docker/build-push-action@v4
with:
context: ${{ inputs.withLibs && "./" || inputs.context }}
context: ${{ inputs.withLibs && './' || inputs.context }}
file: ${{ inputs.context }}/Dockerfile
target: api-nginx
push: true
Expand All @@ -72,7 +72,7 @@ jobs:
- name: Build and Push Worker
uses: docker/build-push-action@v4
with:
context: ${{ inputs.withLibs && "./" || inputs.context }}
context: ${{ inputs.withLibs && './' || inputs.context }}
file: ${{ inputs.context }}/Dockerfile
target: worker
push: true
Expand Down

0 comments on commit 2ac9593

Please sign in to comment.