Skip to content

awinadb: Move CheckOS function out of utils #21

awinadb: Move CheckOS function out of utils

awinadb: Move CheckOS function out of utils #21

Workflow file for this run

name: Build
on:
push:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Build 64bit
run: |
GOOS=windows GOARCH=amd64 go build -o awinadb_x64.exe .
- name: Build 32bit
run: |
GOOS=windows GOARCH=386 go build -o awinadb_x86.exe .
- uses: actions/upload-artifact@v2
with:
name: awinadb
path: awinadb_*.exe