Skip to content

Commit

Permalink
Merge pull request #10 from hazelops/feature/add_gha_build_for_ize
Browse files Browse the repository at this point in the history
Add ize build on push (CORE-179)
  • Loading branch information
kobrikx authored Oct 18, 2021
2 parents f8fea21 + 00b3f32 commit 2f7f4d3
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build_on_push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: "Build IZE on push"
on:
push:
branches:
- main
workflow_dispatch:
jobs:
Build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.16.x
- name: Checkout code
uses: actions/checkout@v2
- name: Build
run: go build -o ./ize ./cmd
- name: Upload bin to artifacts
uses: actions/upload-artifact@v1
with:
name: ${{ runner.os }}
path: ize

0 comments on commit 2f7f4d3

Please sign in to comment.