Skip to content

Commit 5058989

Browse files
committed
using correct Dockerfile
1 parent 71c2f8f commit 5058989

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/deploy_to_ghcr.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,11 @@ jobs:
8181
type=semver,pattern={{version}}
8282
type=semver,pattern={{major}}.{{minor}}
8383
84-
- name: Build and push
84+
- name: Build and push api
8585
uses: docker/build-push-action@v5
8686
with:
8787
context: .
88+
file: api.Dockerfile
8889
tags: ${{ steps.meta.outputs.tags }}
8990
annotations: ${{ steps.meta.outputs.annotations }}
9091
labels: ${{ steps.meta.outputs.labels }}

.github/workflows/deploy_to_ghcr_custom_tag.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,11 @@ jobs:
8686
type=semver,pattern={{version}}
8787
type=semver,pattern={{major}}.{{minor}}
8888
89-
- name: Build and push
89+
- name: Build and push api
9090
uses: docker/build-push-action@v5
9191
with:
9292
context: .
93+
file: api.Dockerfile
9394
tags: ${{ steps.meta.outputs.tags }}
9495
annotations: ${{ steps.meta.outputs.annotations }}
9596
labels: ${{ steps.meta.outputs.labels }}

.github/workflows/deploy_to_ghcr_tag_release.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,11 @@ jobs:
104104
type=semver,pattern={{version}}
105105
type=semver,pattern={{major}}.{{minor}}
106106
107-
- name: Build and push
107+
- name: Build and push api
108108
uses: docker/build-push-action@v5
109109
with:
110110
context: .
111+
file: api.Dockerfile
111112
tags: ${{ steps.meta.outputs.tags }}
112113
annotations: ${{ steps.meta.outputs.annotations }}
113114
labels: ${{ steps.meta.outputs.labels }}

0 commit comments

Comments
 (0)