File tree 2 files changed +7
-6
lines changed
2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -12,24 +12,24 @@ jobs:
12
12
packages : write
13
13
steps :
14
14
- name : Checkout
15
- uses : actions/checkout@v3
15
+ uses : actions/checkout@v4
16
16
- name : Set up QEMU
17
- uses : docker/setup-qemu-action@v2
17
+ uses : docker/setup-qemu-action@v3
18
18
- name : Set up Docker Buildx
19
- uses : docker/setup-buildx-action@v2
19
+ uses : docker/setup-buildx-action@v3
20
20
- name : Login to GitHub Container Registry
21
- uses : docker/login-action@v2
21
+ uses : docker/login-action@v3
22
22
with :
23
23
registry : ghcr.io
24
24
username : ${{ github.repository_owner }}
25
25
password : ${{ secrets.GITHUB_TOKEN }}
26
26
- name : Build and push
27
- uses : docker/build-push-action@v4
27
+ uses : docker/build-push-action@v6
28
28
with :
29
29
context : .
30
30
file : ./Dockerfile
31
31
# platforms: ${{ matrix.platforms }}
32
- platforms : linux/amd64
32
+ platforms : linux/amd64,linux/arm64/v8
33
33
push : true
34
34
tags : ghcr.io/x-b-e/server-pg:15
35
35
build-args : |
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ ARG PG_TAG="15-3.4""
7
7
FROM $PG_IMAGE
8
8
9
9
ARG PG_MAJOR
10
+ ENV PG_MAJOR=" 15"
10
11
11
12
LABEL org.opencontainers.image.source " https://github.com/x-b-e/pgvector"
12
13
LABEL org.opencontainers.image.description " XBE server postgres with postgis, pgvector"
You can’t perform that action at this time.
0 commit comments