Skip to content

Commit 474662c

Browse files
committed
fix(ci): correct build context
1 parent a335306 commit 474662c

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/docker.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ jobs:
4343
username: ${{ github.repository_owner }}
4444
password: ${{ secrets.GITHUB_TOKEN }}
4545

46-
- name: Docker meta (dev)
47-
id: dev
46+
- name: Docker meta
47+
id: meta
4848
uses: docker/metadata-action@v5
4949
with:
5050
# list of Docker images to use as base name for tags
@@ -62,13 +62,12 @@ jobs:
6262
type=edge,branch=main
6363
type=sha,format=long
6464
65-
- name: Build and push (dev)
65+
- name: Build and push
6666
uses: docker/build-push-action@v6
6767
with:
68-
context: dev
6968
push: ${{ github.event_name != 'pull_request' }}
70-
tags: ${{ steps.dev.outputs.tags }}
71-
labels: ${{ steps.dev.outputs.labels }}
69+
tags: ${{ steps.meta.outputs.tags }}
70+
labels: ${{ steps.meta.outputs.labels }}
7271
platforms: linux/amd64,linux/arm64
7372
cache-from: type=gha
7473
cache-to: type=gha,mode=max

0 commit comments

Comments
 (0)