Skip to content

Commit b6b4a40

Browse files
committed
Artifact built
1 parent 268ddc7 commit b6b4a40

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/actions/docker-metadata/action.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ inputs:
1010
description: "Image name prefix"
1111
required: false
1212
default: "nesohq/nesohq"
13+
service:
14+
description: "Service name"
15+
required: false
16+
default: "landing"
1317

1418
outputs:
1519
tags:

.github/workflows/build-and-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ jobs:
1818
packages: write
1919
uses: ./.github/workflows/docker-build.yml
2020
with:
21-
service: '.'
21+
service: 'landing'
2222
secrets: inherit

.github/workflows/docker-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ jobs:
5353
- name: 🐳 Build and push Docker image
5454
uses: docker/build-push-action@v5
5555
with:
56-
context: ./${{ inputs.service }}
57-
file: ./${{ inputs.service }}/Dockerfile
56+
context: .
57+
file: ./Dockerfile
5858
push: true
5959
tags: ${{ steps.meta.outputs.tags }}
6060
labels: ${{ steps.meta.outputs.labels }}

0 commit comments

Comments
 (0)