-
Notifications
You must be signed in to change notification settings - Fork 0
78 lines (75 loc) · 2.37 KB
/
api.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
name: Build api
on:
push:
tags:
- "*"
branches:
- "main"
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
name: Build binary and push (api)
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
attestations: write
id-token: write
strategy:
fail-fast: false
matrix:
platform:
- { docker: linux/amd64, fancy: amd64 }
- { docker: linux/arm64, fancy: arm64 }
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Prepare environment
run: |
if [[ $GITHUB_REF == refs/tags/* ]]; then
echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
else
echo "VERSION=$(git rev-parse --short $GITHUB_SHA)" >> $GITHUB_ENV
fi
- name: Install cross (for aarch64 builds)
if: matrix.platform.fancy == 'arm64'
run: cargo install cross
- name: Build binary (aarch64)
if: matrix.platform.fancy == 'arm64'
run: cross build --target aarch64-unknown-linux-gnu --release
- name: Copy binary (aarch64)
if: matrix.platform.fancy == 'arm64'
run: mv target/aarch64-unknown-linux-gnu/release/api api/api
- name: Build binary (amd64)
if: matrix.platform.fancy == 'amd64'
run: cargo build --release
- name: Copy binary (amd64)
if: matrix.platform.fancy == 'amd64'
run: mv target/release/api api/api
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to repository
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
id: build
uses: docker/build-push-action@v6
with:
push: true
platforms: ${{ matrix.platform.docker }}
context: api/
file: api/Dockerfile
labels: ${{ steps.meta.outputs.labels }}
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.VERSION }}-${{ matrix.platform.fancy }}