Add github rc build

This commit is contained in:
jamesread 2021-11-04 10:50:47 +00:00
parent 2e45f9304f
commit f9526749eb
1 changed files with 31 additions and 0 deletions

31
.github/workflows/rc-build.yml vendored Normal file
View File

@ -0,0 +1,31 @@
name: "RC Build"
on: [push]
jobs:
codestyle:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
- name: grpc
run: make grpc
- name: goreleaser
run: goreleaser release --snapshot --rm-dist
- name: Archive binaries
uses: actions/upload-artifacts@v2
with:
name: dist
path: dist/**
- name: Archive integration tests
uses: actions/upload-artifacts@v2
with:
name: integration-tests
path: integration-tests