Skip to content

Commit

Permalink
ci: add GOPRIVATE to workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Sangyeop.lee committed Jun 3, 2021
1 parent 028b8f0 commit 5bb7928
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Build & Push
# Build & Push rebuilds the ostracon docker image on every push to master and creation of tags
# and pushes the image to https://docker-registry.linecorp.com/link-network/v2/lbm
env:
GOPRIVATE: "github.com/line/*"
on:
pull_request:
push:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: Lint
# Lint runs golangci-lint over the entire Tendermint repository
# This workflow is run on every pull request and push to master
# The `golangci` job will pass without running if no *.{go, mod, sum} files have been modified.
env:
GOPRIVATE: "github.com/line/*"
on:
pull_request:
push:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
name: Lint
env:
GOPRIVATE: "github.com/line/*"
on:
push:
branches:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: Tests
# Tests runs different tests (test_abci_apps, test_abci_cli, test_apps)
# This workflow runs on every push to master or release branch and every pull requests
# All jobs will pass without running if no *{.go, .mod, .sum} files have been modified
env:
GOPRIVATE: "github.com/line/*"
on:
pull_request:
push:
Expand Down

0 comments on commit 5bb7928

Please sign in to comment.