-
Notifications
You must be signed in to change notification settings - Fork 21
46 lines (40 loc) · 1.17 KB
/
docker.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Docker build and publish
on:
push:
tags:
- 'astra-assistants-api-server-*'
workflow_run:
workflows: ["Server Release on Version Change"]
types:
- completed
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
name: Docker build and publish
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Read Version from File
id: version
run: echo "VERSION=$(cat VERSION)" >> $GITHUB_ENV
- name: Build and push multi-platform Docker images
id: docker_build
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: |
datastax/astra-assistants:${{ env.VERSION }}
datastax/astra-assistants:latest