-
Notifications
You must be signed in to change notification settings - Fork 9
87 lines (83 loc) · 2.62 KB
/
build-main-docker-tag.yaml
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
79
80
81
82
83
84
85
86
87
---
name: Build main - docker image for DockerHub and AWS public gallery
on:
workflow_dispatch:
push:
branches:
- main
paths:
- "**/*.rs"
- "**/*.toml"
- ".github/workflows/build-main-docker-tag.yaml"
permissions:
id-token: write
contents: read
packages: write
jobs:
dockerpublish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install rust
run: |
rustup set auto-self-update disable
rustup toolchain install stable --profile default
rustup show
- name: Rust cache
uses: Swatinem/rust-cache@v2
with:
prefix-key: "rust-v0-gnu"
- name: Install cross (cross compile)
run: |
cargo install cross
- name: Build release for x86_64
run: |
cargo build --release --target=x86_64-unknown-linux-gnu
- name: Build release for aarch64
run: |
cross build --release --target=aarch64-unknown-linux-gnu
- name: Setup docker buildx
uses: docker/setup-buildx-action@v3
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: arn:aws:iam::726824350591:role/unleash-github-ecr-public-publish-role
role-session-name: edge-actions-push-to-ecr-public
aws-region: us-east-1
- name: Login to AWS ECR
id: login-ecr-public
uses: aws-actions/amazon-ecr-login@v2
with:
registry-type: public
- name: Docker meta configuration (set image and tag)
uses: docker/metadata-action@v5
id: meta
with:
images: |
unleashorg/unleash-edge
${{ steps.login-ecr-public.outputs.registry }}/unleashorg/unleash-edge
tags: |
type=edge
- name: Login to docker hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to Github Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build tag and push images
uses: docker/build-push-action@v6
with:
file: Dockerfile.publish
context: .
platforms: linux/arm64,linux/amd64
push: true
labels: ${{ steps.meta.outputs.labels }}
tags: ${{ steps.meta.outputs.tags }}
cache-from: type=gha
cache-to: type=gha,mode=max