Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
Former-commit-id: ab2fbd6
  • Loading branch information
ppwfx committed Mar 9, 2020
1 parent 25d4250 commit 2e7dead
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml → .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: ci
name: build
on: [push]
jobs:
build:
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v1
with:
go-version: '1.13'
- run: make build
2 changes: 0 additions & 2 deletions metactl/.make/make.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
set -eox pipefail

function build {
export GO111MODULE=on

time go build -i -o dist/metactl cmd/metactl/main.go
ls -lah dist/metactl
}
Expand Down
2 changes: 1 addition & 1 deletion metamate/.make/make.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@ function release {
--tag metamatex/metamate:$TAG \
.

docker push metamatex/metamate:latest
docker push metamatex/metamate
}

0 comments on commit 2e7dead

Please sign in to comment.