-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (49 loc) · 1.45 KB
/
rust-docker.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
name: Rust and Docker Workflow
on:
push:
branches:
- dev
- main
jobs:
cargo-test:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/dev'
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
docker-build-push:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: wangyucode
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Extract version from Cargo.toml
id: extract_version
run: |
version=$(awk -F= '/^version/ {print $2}' Cargo.toml | tr -d '"' | tr -d ' ')
echo "Version: $version"
echo "::set-output name=version::$version"
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: wangyucode/crane:latest,wangyucode/crane:${{ steps.extract_version.outputs.version }}