-
Notifications
You must be signed in to change notification settings - Fork 6
59 lines (48 loc) · 1.49 KB
/
docker-tag.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
name: Build Docker images when Tagging
on:
push:
tags:
- 'v*.*.*' # match all semver tag like: v1.0.0, v2.1.3
jobs:
build-and-push:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
strategy:
matrix:
target: [x86_64-unknown-linux-gnu, x86_64-unknown-linux-musl]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/v}
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.82.0
profile: minimal
override: true
target: ${{ matrix.target }}
- name: Install cross
run: cargo install cross
- name: Build with cross
run: cross build --target ${{ matrix.target }} --release
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: |
ghcr.io/${{ github.repository }}:${{ steps.get_version.outputs.VERSION }}-${{ matrix.target }}
ghcr.io/${{ github.repository }}:latest-${{ matrix.target }}
file: docker/${{ matrix.target }}/Dockerfile