You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been able to successfully use this with other build pipelines, but I'm running into an issue getting it to compile a binary for a project that is using a private submodule. I have GOPRIVATE set and I have a step that does this
and I know that works because if I run a go test things compile and pass. When I try to run a build immediately after the test things fail on it trying to pull down the dependency
The text was updated successfully, but these errors were encountered:
I've been able to successfully use this with other build pipelines, but I'm running into an issue getting it to compile a binary for a project that is using a private submodule. I have GOPRIVATE set and I have a step that does this
- name: Configure git for private modules run: git config --global url."https://${{ secrets.RELEASE_MANAGER }}:${{ secrets.RELEASE_MANAGER_TOKEN }}@github.com".insteadOf "https://github.com"
and I know that works because if I run a go test things compile and pass. When I try to run a build immediately after the test things fail on it trying to pull down the dependency
The text was updated successfully, but these errors were encountered: