Updated workflow

This commit is contained in:
2026-05-29 16:58:40 -04:00
parent 4ee2bb1bce
commit 751581efed
+8 -5
View File
@@ -32,11 +32,14 @@ jobs:
go env -w GOPRIVATE='${{ secrets.GIT_HOST_ROOT }}' go env -w GOPRIVATE='${{ secrets.GIT_HOST_ROOT }}'
echo "Creating local .gitconfig" echo "Creating local .gitconfig"
touch ~/.gitconfig # touch ~/.gitconfig
cat > ~/.gitconfig << "EOF" # cat > ~/.gitconfig << "EOF"
[url "ssh://git@${{ secrets.GIT_HOST_ROOT }}"] # [url "ssh://git@${{ secrets.GIT_HOST_ROOT }}"]
insteadOf = https://${{ secrets.GIT_HOST_ROOT }} # insteadOf = https://${{ secrets.GIT_HOST_ROOT }}
EOF # EOF
git config --global url."${{ secrets.GIT_HOST_ROOT }}:".insteadOf "https://git.kundeng.us/"
git config --global url."${{ secrets.GIT_HOST_ROOT }}:".insteadOf "http://git.kundeng.us/"
echo "Building binary" echo "Building binary"
make build make build