Skip to content

Commit

Permalink
Upload podsync binaries from CI Build job
Browse files Browse the repository at this point in the history
  • Loading branch information
mxpv committed Apr 19, 2020
1 parent eb17568 commit 57d84f7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,18 @@ jobs:
uses: actions/setup-go@v1
with:
go-version: 1.12

- name: Checkout
uses: actions/checkout@v1

- name: Build
run: |
make build
run: make build

- name: Upload
uses: actions/upload-artifact@v1
with:
name: podsync-${{ matrix.os }}
path: bin/

test:
name: Test
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ all: build lint test
#
.PHONY: build
build:
go build -o podsync ./cmd/podsync
go build -o bin/podsync ./cmd/podsync

#
# Build Docker image
Expand Down

0 comments on commit 57d84f7

Please sign in to comment.