Skip to content

Commit da32f6a

Browse files
committed
ci: docker
1 parent b6c292f commit da32f6a

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/docker-image.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Docker Image CI
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
jobs:
10+
buildx:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
- name: Set up Docker Buildx
16+
uses: docker/setup-buildx-action@v3
17+
- name: Build and push
18+
uses: docker/build-push-action@v6
19+
with:
20+
tags: manio/aa-proxy-rs:latest
21+
allow: security.insecure
22+
outputs: build
23+
- name: Upload a Build Artifact
24+
uses: actions/upload-artifact@v4.4.3
25+
with:
26+
name: aa-proxy-rs
27+
path: ./build

0 commit comments

Comments
 (0)