增强各数据库插件的 SQL 执行日志记录,添加 SQL 执行信息日志以提高调试能力 #18
Workflow file for this run
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: Release Build | |
on: | |
push: | |
tags: | |
- 'v*' | |
- 'pre-*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
goos: [linux, windows, darwin] | |
goarch: [amd64, arm64] | |
exclude: | |
- goos: windows | |
goarch: arm64 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23' | |
- name: Build | |
env: | |
GOOS: ${{ matrix.goos }} | |
GOARCH: ${{ matrix.goarch }} | |
CGO_ENABLED: 0 | |
run: | | |
BUILD_TIME=$(date "+%F_%T") | |
GIT_COMMIT=$(git rev-parse HEAD) | |
VERSION=${GITHUB_REF#refs/tags/} | |
OUTPUT="ipaas-agent-${VERSION}-${{ matrix.goos }}-${{ matrix.goarch }}" | |
if [ "${{ matrix.goos }}" = "windows" ]; then | |
OUTPUT="${OUTPUT}.exe" | |
fi | |
echo "Building ${OUTPUT} for ${{ matrix.goos }} ${{ matrix.goarch }}" | |
echo "Version: ${VERSION}" | |
echo "Build Time: ${BUILD_TIME}" | |
echo "Git Commit: ${GIT_COMMIT}" | |
go build -ldflags "-X main.BuildTime=${BUILD_TIME} -X main.GitCommit=${GIT_COMMIT} -X main.Version=${VERSION}" -o ${OUTPUT} | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: binaries | |
path: ipaas-agent-* | |
release: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v3 | |
with: | |
name: binaries | |
- name: Create Release | |
id: create_release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: ipaas-agent-* | |
prerelease: ${{ contains(github.ref, 'pre-') }} | |
body_path: ./release_notes.md | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |