Skip to content

Commit 9bf6803

Browse files
authored
Add workflow for building images
1 parent 2fd44a8 commit 9bf6803

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/docker-image.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Docker Image CI
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
version:
7+
description: "Image version to build"
8+
required: true
9+
10+
jobs:
11+
build_amd64:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: Build docker image
16+
run:
17+
build_aarch64:
18+
runs-on: ubuntu-latest-arm
19+
steps:
20+
- uses: actions/checkout@v4
21+
- name: Build the Docker image
22+
23+
24+
publish:
25+
runs-on: ubuntu-latest
26+
steps:
27+
28+

0 commit comments

Comments
 (0)