Skip to content

Merge pull request #21 from ashwing123/aarch64-additions #59

Merge pull request #21 from ashwing123/aarch64-additions

Merge pull request #21 from ashwing123/aarch64-additions #59

Workflow file for this run

on:
push:
pull_request:
name: build
jobs:
build:
name: build
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set up golang
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install golang make
- name: Make machine binaries
run: |
make
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: binaries
path: bin/
if-no-files-found: error
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: bin/machine*