This commit is contained in:
jinnrry 2024-03-04 20:49:19 +08:00
parent 4b06ddbd29
commit 8a3ee3808f
3 changed files with 10 additions and 3 deletions

View File

@ -22,6 +22,7 @@ jobs:
echo "${GITHUB_REF/refs\/tags\//}"
echo "${GITHUB_REF#refs/*/}"
echo "${GITHUB_REF}"
echo "GITHASH=${git show -s --format=%H}" >> ${GITHASH}
- uses: actions/checkout@v3
- name: set lower case repository name
@ -51,7 +52,9 @@ jobs:
- name: Build and push Docker images
uses: docker/build-push-action@v4
with:
build-args: VERSION=${{ env.VERSION }}
build-args: |
VERSION=${{ env.VERSION }}
GITHASH=${{ env.GITHASH }}
context: .
file: ./DockerfileGithubAction
platforms: |

View File

@ -22,6 +22,7 @@ jobs:
echo "${GITHUB_REF/refs\/tags\//}"
echo "${GITHUB_REF#refs/*/}"
echo "${GITHUB_REF}"
echo "GITHASH=${git show -s --format=%H}" >> ${GITHASH}
- uses: actions/checkout@v3
- name: set lower case repository name
@ -51,7 +52,9 @@ jobs:
- name: Build and push Docker images
uses: docker/build-push-action@v4
with:
build-args: VERSION=${{ env.VERSION }}
build-args: |
VERSION=${{ env.VERSION }}
GITHASH=${{ env.GITHASH }}
context: .
file: ./DockerfileGithubAction
platforms: |

View File

@ -1,11 +1,12 @@
FROM golang:alpine as serverbuild
ARG VERSION
ARG GITHASH
WORKDIR /work
COPY server .
RUN apk update && apk add git
RUN go build -ldflags "-s -w -X 'main.version=${VERSION}' -X 'main.goVersion=$(go version)' -X 'main.gitHash=$(git show -s --format=%H)' -X 'main.buildTime=$(TZ=UTC-8 date +%Y-%m-%d" "%H:%M:%S)'" -o pmail main.go
RUN go build -ldflags "-s -w -X 'main.version=${VERSION}' -X 'main.goVersion=$(go version)' -X 'main.gitHash=${GITHASH}' -X 'main.buildTime=$(TZ=UTC-8 date +%Y-%m-%d" "%H:%M:%S)'" -o pmail main.go
RUN cd /work/hooks/telegram_push && go build -ldflags "-s -w" -o output/telegram_push telegram_push.go
RUN cd /work/hooks/web_push && go build -ldflags "-s -w" -o output/web_push web_push.go
RUN cd /work/hooks/wechat_push && go build -ldflags "-s -w" -o output/wechat_push wechat_push.go