We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0919081 commit 4b40b3aCopy full SHA for 4b40b3a
.github/workflows/build-dev.yaml
@@ -6,11 +6,20 @@ on:
6
- 'development/**'
7
8
jobs:
9
- build-dev:
+ build-base:
10
uses: scality/workflows/.github/workflows/docker-build.yaml@v2
11
- secrets:
12
- REGISTRY_LOGIN: ${{ github.repository_owner }}
13
- REGISTRY_PASSWORD: ${{ github.token }}
14
with:
15
namespace: ${{ github.repository_owner }}
16
name: ${{ github.event.repository.name }}
+
+ build-svc-base:
+ 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