Skip to content

Commit

Permalink
fix: tsig dns support
Browse files Browse the repository at this point in the history
  • Loading branch information
wintbiit committed Dec 12, 2023
1 parent a003e3a commit 06dce93
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ jobs:
push: true
platforms: linux/amd64,linux/arm64,linux/arm/v7
build-args: |
TAGS="mysql"
TAGS='mysql'
tags: |
wulaguy/ninedns:latest
wulaguy/ninedns:${{ needs.release.outputs.new_version }}
Expand Down Expand Up @@ -279,7 +279,7 @@ jobs:
push: true
platforms: linux/amd64,linux/arm64,linux/arm/v7
build-args: |
TAGS=""
TAGS=''
tags: |
wulaguy/ninedns:${{ needs.release.outputs.new_version }}-mini
ghcr.io/wintbiit/ninedns:${{ needs.release.outputs.new_version }}-mini
Expand Down Expand Up @@ -343,7 +343,7 @@ jobs:
push: true
platforms: linux/amd64,linux/arm64,linux/arm/v7
build-args: |
TAGS="mysql lark sqlite postgres"
TAGS='mysql lark sqlite postgres'
tags: |
wulaguy/ninedns:${{ needs.release.outputs.new_version }}-full
ghcr.io/wintbiit/ninedns:${{ needs.release.outputs.new_version }}-full
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM golang:1.20-alpine AS builder
ARG TAGS
WORKDIR /app
COPY . .
RUN go build -trimpath -ldflags="-s -w" -tags=$TAGS -o ./bin/ninedns .
RUN go build -trimpath -ldflags "-s -w" -tags "$TAGS" -o ./bin/ninedns .

FROM alpine:3.14
WORKDIR /app
Expand Down

0 comments on commit 06dce93

Please sign in to comment.