Automatic build action, take 1

This commit is contained in:
Jarno Rankinen 2024-03-07 23:03:33 +02:00
parent 28a555fa2b
commit 8278bc9445
1 changed files with 28 additions and 0 deletions

28
.github/workflows/build.yaml vendored Normal file
View File

@ -0,0 +1,28 @@
name: Build release binaries
on:
push:
tags:
- "*"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '1.18.0'
# Install all the dependencies
- name: Install dependencies
run: go version
# Run build of the application
- name: Build x86_64
run: ./build.sh