We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0404efb commit 72f9063Copy full SHA for 72f9063
1 file changed
.github/workflows/publish_image_on_release.yml
@@ -16,6 +16,7 @@ on:
16
env:
17
REGISTRY: ghcr.io/persistentss13
18
IMAGE_NAME: nebula
19
+ IMAGE_NAME_SQL: nebula-sql
20
21
jobs:
22
build-and-push-image:
@@ -47,4 +48,18 @@ jobs:
47
48
context: .
49
push: true
50
tags: ${{ steps.meta.outputs.tags }}
- labels: ${{ steps.meta.outputs.labels }}
51
+ labels: ${{ steps.meta.outputs.labels }}
52
+
53
+ - name: Extract metadata (tags, labels) for SQL
54
+ id: meta-2
55
+ uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
56
+ with:
57
+ images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME_SQL }}
58
59
+ - name: Build and push Docker image
60
+ uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
61
62
+ context: ./sql
63
+ push: true
64
+ tags: ${{ steps.meta-2.outputs.tags }}
65
+ labels: ${{ steps.meta-2.outputs.labels }}
0 commit comments