Skip to content

Commit bee2931

Browse files
committed
fix: remover alvo desnecessário do comando de build do Docker nos workflows
1 parent 3ac6ca6 commit bee2931

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/nightly.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ jobs:
115115
env:
116116
DOCKER_BUILDKIT: 1
117117
run: |
118-
docker build -f ./docker/Dockerfile --target phlow \
118+
docker build -f ./docker/Dockerfile \
119119
-t ghcr.io/${{ github.repository_owner }}/phlow:nightly-glibc \
120120
-t ghcr.io/${{ github.repository_owner }}/phlow:nightly \
121121
-t ghcr.io/${{ github.repository_owner }}/phlow:${{ needs.tag.outputs.tag }} .
@@ -139,7 +139,7 @@ jobs:
139139
env:
140140
DOCKER_BUILDKIT: 1
141141
run: |
142-
docker build -f ./docker/Dockerfile --target phlow \
142+
docker build -f ./docker/Dockerfile \
143143
-t lowcarboncode/phlow:nightly-glibc \
144144
-t lowcarboncode/phlow:nightly \
145145
-t lowcarboncode/phlow:${{ needs.tag.outputs.tag }} .

.github/workflows/stable.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
env:
7777
DOCKER_BUILDKIT: 1
7878
run: |
79-
docker build -f ./docker/Dockerfile --target phlow \
79+
docker build -f ./docker/Dockerfile \
8080
-t ghcr.io/${{ github.repository_owner }}/phlow:glibc \
8181
-t ghcr.io/${{ github.repository_owner }}/phlow:busybox \
8282
-t ghcr.io/${{ github.repository_owner }}/phlow:latest \
@@ -101,7 +101,7 @@ jobs:
101101
env:
102102
DOCKER_BUILDKIT: 1
103103
run: |
104-
docker build -f ./docker/Dockerfile --target phlow \
104+
docker build -f ./docker/Dockerfile \
105105
-t lowcarboncode/phlow:glibc \
106106
-t lowcarboncode/phlow:busybox \
107107
-t lowcarboncode/phlow:latest \

0 commit comments

Comments
 (0)