Skip to content

Commit

Permalink
Merge pull request #5 from Delni/chore/build
Browse files Browse the repository at this point in the history
Automatically build exec to ease release process
  • Loading branch information
Delni authored Jan 5, 2023
2 parents 91a2a7d + 6ea2c3c commit f90bf3c
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build Executables

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18

- name: Build
run: ./build.sh

- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: Generated executables
path: bin

0 comments on commit f90bf3c

Please sign in to comment.