Skip to content

fix: bugFixed

fix: bugFixed #60

Workflow file for this run

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