-
Notifications
You must be signed in to change notification settings - Fork 2
67 lines (55 loc) · 1.85 KB
/
release-backend.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
name: release-hello-tracing-backend
on:
push:
tags:
- hello-tracing-backend-v*
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v4
- name: Install Rust toolchain
run: |
toolchain=$(grep channel rust-toolchain.toml | sed -r 's/channel = "(.*)"/\1/')
echo "installing toolchain $toolchain from rust-toolchain.toml"
rm /home/runner/.cargo/bin/rustfmt
rustup toolchain install $toolchain --profile minimal
rustup component add --toolchain $toolchain rustfmt
rustup component add --toolchain $toolchain clippy
- name: Install just
uses: taiki-e/install-action@v2
with:
tool: just
- name: Build
run: just check
- name: Check code format
run: just fmt-check
- name: Run linter
run: just lint
- name: Run tests
run: just test
- name: Determine version
id: version
run: |
ref_name=${{ github.ref_name }}
version=${ref_name#hello-tracing-backend-}
echo "version=$version" >> "$GITHUB_OUTPUT"
- name: Docker metadata
uses: docker/metadata-action@v5
id: meta
with:
images: hseeberger/hello-tracing-backend
tags: type=semver,pattern={{version}},value=${{ steps.version.outputs.version }}
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Docker build and push hello-tracing-backend
uses: docker/build-push-action@v5
with:
file: hello-tracing-backend/Dockerfile
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
push: true