Skip to content

Commit 4b40b3a

Browse files
committed
UTAPI-110 build nodesvc-base image during dev
1 parent 0919081 commit 4b40b3a

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

.github/workflows/build-dev.yaml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,20 @@ on:
66
- 'development/**'
77

88
jobs:
9-
build-dev:
9+
build-base:
1010
uses: scality/workflows/.github/workflows/docker-build.yaml@v2
11-
secrets:
12-
REGISTRY_LOGIN: ${{ github.repository_owner }}
13-
REGISTRY_PASSWORD: ${{ github.token }}
1411
with:
1512
namespace: ${{ github.repository_owner }}
1613
name: ${{ github.event.repository.name }}
14+
15+
build-svc-base:
16+
needs: build-base
17+
uses: scality/workflows/.github/workflows/docker-build.yaml@v2
18+
with:
19+
namespace: ${{ github.repository_owner }}
20+
name: ${{ github.event.repository.name }}
21+
context: .
22+
file: images/nodesvc-base/Dockerfile
23+
tag: ${{ github.sha }}-svc-base
24+
build-args: |
25+
UTAPI_VERSION=${{ github.sha }}

0 commit comments

Comments
 (0)