forked from mem9-ai/mem9
-
Notifications
You must be signed in to change notification settings - Fork 1
47 lines (38 loc) · 1.28 KB
/
build-swr.yml
File metadata and controls
47 lines (38 loc) · 1.28 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
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 up Go
uses: actions/setup-go@v5
with:
go-version-file: server/go.mod
cache-dependency-path: server/go.sum
- 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 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 image
run: REGISTRY=${{ secrets.SWR_REGISTRY }}/${{ secrets.SWR_ORGANIZATION }} COMMIT=${{ env.SHORT_SHA }} make docker
- name: Tag latest
run: docker tag "$SWR_IMG:$SHORT_SHA" "$SWR_IMG:latest"
- name: Push image tags
run: |
docker push "$SWR_IMG:$SHORT_SHA"
docker push "$SWR_IMG:latest"