Skip to content

Commit

Permalink
Add github actions to release binary and docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
wengchaoxi committed Mar 19, 2024
1 parent ae298bf commit 343a9fe
Show file tree
Hide file tree
Showing 4 changed files with 157 additions and 8 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Dockerfile
buildx.Dockerfile
docker-compose.yml
README.md
.env
Expand Down
46 changes: 46 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Release `Auth Proxy`

on:
push:
tags:
- v*

jobs:
release:
runs-on: ubuntu-latest
env:
GO_VERSION: stable
CGO_ENABLED: 0

steps:
# https://github.com/marketplace/actions/checkout
- uses: actions/checkout@v4
with:
fetch-depth: 0

# https://github.com/marketplace/actions/setup-go-environment
- name: Set up Go ${{ env.GO_VERSION }}
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

# https://goreleaser.com/ci/actions/
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN_REPO }}
101 changes: 93 additions & 8 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,22 +22,21 @@ builds:
- arm
goarm:
- 7
binary: '{{ .ProjectName }}_v{{ .Version }}'
binary: '{{ .ProjectName }}'

archives:
- format: tar.gz
name_template: >-
{{ .ProjectName }}_
v{{.Version}}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else }}{{ .Arch }}{{ end }}
{{- .ProjectName }}_
v{{- .Version }}_
{{- .Os }}_
{{- .Arch }}
{{- if .Arm }}v{{ .Arm }}{{ end }}
format_overrides:
- goos: windows
format: zip
files:
- ./web
- web
- LICENSE

changelog:
Expand All @@ -46,4 +45,90 @@ changelog:
exclude:
- "^docs:"
- "^test:"
- '^chore:'
- "^chore:"
- "^build:"
- "^build(deps):"

# https://goreleaser.com/cookbooks/multi-platform-docker-images/
docker_manifests:
- name_template: 'wengchaoxi/auth-proxy:{{ .Tag }}'
image_templates:
- 'wengchaoxi/auth-proxy:{{ .Tag }}-amd64'
- 'wengchaoxi/auth-proxy:{{ .Tag }}-arm64'
- 'wengchaoxi/auth-proxy:{{ .Tag }}-armv7'
- name_template: 'wengchaoxi/auth-proxy:latest'
image_templates:
- 'wengchaoxi/auth-proxy:latest-amd64'
- 'wengchaoxi/auth-proxy:latest-arm64'
- 'wengchaoxi/auth-proxy:latest-armv7'

dockers:
- use: buildx
goos: linux
goarch: amd64
dockerfile: buildx.Dockerfile
image_templates:
- 'wengchaoxi/auth-proxy:{{ .Tag }}-amd64'
- 'wengchaoxi/auth-proxy:latest-amd64'
build_flag_templates:
- '--pull'
# https://github.com/opencontainers/image-spec/blob/main/annotations.md#pre-defined-annotation-keys
- '--label=org.opencontainers.image.title={{.ProjectName}}'
- '--label=org.opencontainers.image.description=A minimalist reverse proxy service for web service authentication'
- '--label=org.opencontainers.image.source={{.GitURL}}'
- '--label=org.opencontainers.image.url={{.GitURL}}'
- '--label=org.opencontainers.image.documentation={{.GitURL}}'
- '--label=org.opencontainers.image.created={{.Date}}'
- '--label=org.opencontainers.image.revision={{.FullCommit}}'
- '--label=org.opencontainers.image.version={{.Version}}'
- '--platform=linux/amd64'
extra_files:
- web
- LICENSE

- use: buildx
goos: linux
goarch: arm64
dockerfile: buildx.Dockerfile
image_templates:
- 'wengchaoxi/auth-proxy:{{ .Tag }}-arm64'
- 'wengchaoxi/auth-proxy:latest-arm64'
build_flag_templates:
- '--pull'
# https://github.com/opencontainers/image-spec/blob/main/annotations.md#pre-defined-annotation-keys
- '--label=org.opencontainers.image.title={{.ProjectName}}'
- '--label=org.opencontainers.image.description=A minimalist reverse proxy service for web service authentication'
- '--label=org.opencontainers.image.source={{.GitURL}}'
- '--label=org.opencontainers.image.url={{.GitURL}}'
- '--label=org.opencontainers.image.documentation={{.GitURL}}'
- '--label=org.opencontainers.image.created={{.Date}}'
- '--label=org.opencontainers.image.revision={{.FullCommit}}'
- '--label=org.opencontainers.image.version={{.Version}}'
- '--platform=linux/arm64'
extra_files:
- web
- LICENSE

- use: buildx
goos: linux
goarch: arm
goarm: '7'
dockerfile: buildx.Dockerfile
image_templates:
- 'wengchaoxi/auth-proxy:{{ .Tag }}-armv7'
- 'wengchaoxi/auth-proxy:latest-armv7'
build_flag_templates:
- '--pull'
# https://github.com/opencontainers/image-spec/blob/main/annotations.md#pre-defined-annotation-keys
- '--label=org.opencontainers.image.title={{.ProjectName}}'
- '--label=org.opencontainers.image.description=A minimalist reverse proxy service for web service authentication'
- '--label=org.opencontainers.image.source={{.GitURL}}'
- '--label=org.opencontainers.image.url={{.GitURL}}'
- '--label=org.opencontainers.image.documentation={{.GitURL}}'
- '--label=org.opencontainers.image.created={{.Date}}'
- '--label=org.opencontainers.image.revision={{.FullCommit}}'
- '--label=org.opencontainers.image.version={{.Version}}'
- '--platform=linux/arm/v7'
extra_files:
- web
- LICENSE
17 changes: 17 additions & 0 deletions buildx.Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# syntax=docker/dockerfile:1
FROM golang:1.22-alpine AS builder
RUN apk --no-cache --no-progress add ca-certificates tzdata \
&& update-ca-certificates \
&& rm -rf /var/cache/apk/*

FROM scratch
COPY --from=builder /usr/share/zoneinfo /usr/share/zoneinfo
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/

WORKDIR /app
COPY auth-proxy ./
COPY web ./web
COPY LICENSE ./

EXPOSE 18000
ENTRYPOINT ["/app/auth-proxy"]

0 comments on commit 343a9fe

Please sign in to comment.