feat: 增加部分接口 #21
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: Docker Image CI | |
on: | |
push: | |
branches: | |
- master | |
env: | |
TZ: "Asia/Shanghai" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.22.2" | |
- name: Check Go Version | |
run: go version | |
- name: Install Dependencies | |
run: go mod download | |
- name: Build the Docker image | |
run: | | |
GOOS=linux GOARCH=amd64 go build -o main main.go | |
docker login --username=${{ secrets.DOCKER_USERNAME }} --password=${{ secrets.DOCKER_PASSWORD }} registry.cn-hangzhou.aliyuncs.com | |
docker build . --file manifest/docker/Dockerfile --tag registry.cn-hangzhou.aliyuncs.com/oldme/oldme-api:latest | |
docker push registry.cn-hangzhou.aliyuncs.com/oldme/oldme-api:latest |