Skip to content

Commit

Permalink
Merge pull request #302 from schemahero/fix-github-ci
Browse files Browse the repository at this point in the history
update to use new github_env github_path methods
  • Loading branch information
laverya committed Nov 25, 2020
2 parents fbe0ada + 80634ef commit 902c18e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yaml
Expand Up @@ -13,8 +13,8 @@ jobs:
go-version: "1.14.3"
- name: setup goenv
run: |
echo "::set-env name=GOPATH::$(go env GOPATH)"
echo "::add-path::$(go env GOPATH)/bin"
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
shell: bash
- uses: actions/checkout@v2
- run: make all
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tagged-release.yaml
Expand Up @@ -12,8 +12,8 @@ jobs:
go-version: "1.14.3"
- name: setup goenv
run: |
echo "::set-env name=GOPATH::$(go env GOPATH)"
echo "::add-path::$(go env GOPATH)/bin"
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
shell: bash
- uses: actions/checkout@v2
- run: make all
Expand Down

0 comments on commit 902c18e

Please sign in to comment.