Skip to content

v0.2 add docker support #4

v0.2 add docker support

v0.2 add docker support #4

Workflow file for this run

name: Release
on:
release:
types: [created]
permissions:
contents: write
packages: write
jobs:
releases-matrix:
name: Release ja3proxy binary
runs-on: ubuntu-latest
strategy:
matrix:
# build and publish in parallel: linux/amd64, linux/arm64,
# windows/amd64, windows/arm64, darwin/amd64, darwin/arm64
goos: [linux, windows, darwin]
goarch: [amd64, arm64]
steps:
- uses: actions/checkout@v3
- uses: wangyoucao577/go-release-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
binary_name: "ja3proxy"
docker-image:
name: Build and push Docker image to GHCR
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build and Push Container to ghcr.io
uses: mr-smithers-excellent/docker-build-push@v6
with:
image: ja3proxy
registry: ghcr.io
multiplatform: true
platform: linux/amd64,linux/arm64,linux/arm/v7
addLatest: true
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}