File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed
Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 1+ # build and publish manylinux_2_28_x86_64 with GraalVM, Maven and Poetry
2+ name : Docker
3+ on :
4+ workflow_dispatch :
5+ inputs :
6+ tag :
7+ description : ' Tag for the Docker image'
8+ required : true
9+ default : ' latest'
10+
11+ jobs :
12+ login :
13+ runs-on : ubuntu-latest
14+ steps :
15+ - name : Check out
16+ uses : actions/checkout@v4
17+
18+ - name : Login to GitHub Container Registry
19+ uses : docker/login-action@v3
20+ with :
21+ registry : ghcr.io
22+ username : ${{ github.actor }}
23+ password : ${{ secrets.GITHUB_TOKEN }}
24+
25+ - name : Set up QEMU
26+ uses : docker/setup-qemu-action@v3
27+
28+ - name : Set up Docker Buildx
29+ uses : docker/setup-buildx-action@v3
30+
31+ - name : Build and push
32+ uses : docker/build-push-action@v6
33+ with :
34+ context : docker
35+ file : docker/Dockerfile_manylinux_2_28_x86_64
36+ push : true
37+ tags : virtualcell/manylinux_2_28_x86_64:${{ github.event.inputs.tag }}
You can’t perform that action at this time.
0 commit comments