From f9526749eb4255aeaaf9620ba18bbfa670b029a3 Mon Sep 17 00:00:00 2001 From: jamesread Date: Thu, 4 Nov 2021 10:50:47 +0000 Subject: [PATCH] Add github rc build --- .github/workflows/rc-build.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/rc-build.yml diff --git a/.github/workflows/rc-build.yml b/.github/workflows/rc-build.yml new file mode 100644 index 0000000..792b5bb --- /dev/null +++ b/.github/workflows/rc-build.yml @@ -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