fix(message): model defination issue #17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy To Dockerhub(Latest) | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
latest: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- | |
name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.21' | |
- name: Setup env | |
run: | | |
export COMMIT_HASH=$GITHUB_SHA | |
export COMMIT_TIME=$(git show -s --format=%ci $COMMIT_HASH) | |
export CURRENT_TIME=$(date -u +"%Y-%m-%dT%H:%M:%SZ") | |
- name: Build | |
run: CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags "-X github.com/hitokoto-osc/notification-worker/config.BuildTag=$COMMIT_HASH -X github.com/hitokoto-osc/notification-worker/config.BuildTime=$CURRENT_TIME -X github.com/hitokoto-osc/notification-worker/config.CommitTime=$COMMIT_TIME -s -w --extldflags '-static -fpic'" -o ./notification-worker main.go | |
- | |
name: Build and push | |
uses: docker/build-push-action@v4 | |
with: | |
push: true | |
tags: hitokoto/notification-worker:dev-latest | |
file: ./manifest/docker/Dockerfile | |
context: . |