Skip to content

Commit

Permalink
ci: docker
Browse files Browse the repository at this point in the history
  • Loading branch information
manio committed Nov 25, 2024
1 parent b6c292f commit da32f6a
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Docker Image CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
buildx:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push
uses: docker/build-push-action@v6
with:
tags: manio/aa-proxy-rs:latest
allow: security.insecure
outputs: build
- name: Upload a Build Artifact
uses: actions/[email protected]
with:
name: aa-proxy-rs
path: ./build

0 comments on commit da32f6a

Please sign in to comment.