We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6c292f commit da32f6aCopy full SHA for da32f6a
.github/workflows/docker-image.yml
@@ -0,0 +1,27 @@
1
+name: Docker Image CI
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
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
26
+ name: aa-proxy-rs
27
+ path: ./build
0 commit comments