We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 610980d commit b878c59Copy full SHA for b878c59
1 file changed
.github/workflows/build-and-push-latest-image.yml
@@ -50,3 +50,25 @@ jobs:
50
push: true
51
tags: ${{ steps.meta.outputs.tags }}
52
labels: ${{ steps.meta.outputs.labels }}
53
+
54
+ - name: Docker meta for website
55
+ id: meta-website
56
+ uses: docker/metadata-action@v4
57
+ with:
58
+ images: |
59
+ sqlchat/sqlchat
60
+ flavor: |
61
+ latest=false
62
+ tags: |
63
+ type=raw,value=website-latest
64
65
+ - name: Build and Push Website Image
66
+ id: docker_build_website
67
+ uses: docker/build-push-action@v3
68
69
+ context: ./
70
+ file: ./Dockerfile.sqlchat-ai
71
+ platforms: linux/amd64
72
+ push: true
73
+ tags: ${{ steps.meta-website.outputs.tags }}
74
+ labels: ${{ steps.meta-website.outputs.labels }}
0 commit comments