fix: bugFixed #60
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 Build Test | |
on: | |
push: | |
branches: [ "dev", "main" ] | |
pull_request: | |
branches: [ "dev", "main" ] | |
jobs: | |
docker-build: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
name: Set up Docker Build Context | |
uses: docker/setup-buildx-action@v3 | |
- | |
name: Build | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: ./Dockerfile | |
push: false | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.21 | |
- name: Build | |
run: | | |
GOOS=linux GOARCH=amd64 go build -o busuanzi-linux-amd64 | |
GOOS=linux GOARCH=arm64 go build -o busuanzi-linux-arm64 | |
GOOS=darwin GOARCH=amd64 go build -o busuanzi-darwin-amd64 | |
GOOS=darwin GOARCH=arm64 go build -o busuanzi-darwin-arm64 | |
GOOS=windows GOARCH=amd64 go build -o busuanzi-windows-amd64.exe | |
GOOS=windows GOARCH=arm64 go build -o busuanzi-windows-arm64.exe | |
GOOS=windows GOARCH=386 go build -o busuanzi-windows-386.exe |