forked from mem9-ai/mem9
-
Notifications
You must be signed in to change notification settings - Fork 1
48 lines (41 loc) · 1.27 KB
/
build-swr.yml
File metadata and controls
48 lines (41 loc) · 1.27 KB
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
47
48
name: Build and Push to SWR
on:
workflow_dispatch:
jobs:
build-and-push:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set image variables
run: |
echo "SHORT_SHA=${GITHUB_SHA::7}" >> "$GITHUB_ENV"
echo "SWR_IMG=${{ secrets.SWR_REGISTRY }}/${{ secrets.SWR_ORGANIZATION }}/mnemo-server" >> "$GITHUB_ENV"
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to SWR
uses: docker/login-action@v3
with:
registry: ${{ secrets.SWR_REGISTRY }}
username: ${{ secrets.SWR_USERNAME }}
password: ${{ secrets.SWR_PASSWORD }}
- name: Build and push multi-arch image
uses: docker/build-push-action@v6
with:
context: .
file: ./server/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: |
${{ env.SWR_IMG }}:${{ env.SHORT_SHA }}
${{ env.SWR_IMG }}:latest
provenance: false
sbom: false
cache-from: type=gha
cache-to: type=gha,mode=max