Skip to content

awinadb: Move CheckOS function out of utils #6

awinadb: Move CheckOS function out of utils

awinadb: Move CheckOS function out of utils #6

Workflow file for this run

name: Build
on:
push:
tags:
- "v*"
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: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: awinadb_*.exe