Skip to content
This repository has been archived by the owner on Jun 28, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1112 from dvonthenen/bug/brokenversion
Browse files Browse the repository at this point in the history
Fix github action dev build (part 3)
  • Loading branch information
davidvonthenen authored Jul 19, 2021
2 parents 71133d5 + 6464f73 commit 3e85ccd
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/build-staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,25 +35,25 @@ jobs:
restore-keys: |
${{ runner.os }}-go-
- name: Get Tanzu Framework
run: |
git clone https://github.com/vmware-tanzu/tanzu-framework.git
pushd tanzu-framework
git checkout tce-main
make set-unstable-versions
popd
- name: Get dependencies
run: |
for i in $(find . -type d); do
if [[ -f "${i}/go.mod" ]]; then
pushd $i
go get -v -t -d ./...
go mod edit --replace github.com/vmware-tanzu/tanzu-framework=./tanzu-framework
go mod edit --replace github.com/vmware-tanzu/tanzu-framework=$GITHUB_WORKSPACE/tanzu-framework
popd
fi
done
- name: Get Tanzu Framework
run: |
git clone https://github.com/vmware-tanzu/tanzu-framework.git
pushd tanzu-framework
git checkout tce-main
make set-unstable-versions
popd
- name: Build
run: make build

Expand Down

0 comments on commit 3e85ccd

Please sign in to comment.