2
0
Fork 0
mirror of https://code.forgejo.org/docker/build-push-action.git synced 2025-09-10 18:00:57 +00:00

src: use port from env

This commit is contained in:
Claude 2025-04-15 18:23:28 -07:00
parent a1b5443a1b
commit 11ec21ffed
3 changed files with 3 additions and 3 deletions

View file

@ -35,7 +35,7 @@ const createBlacksmithAPIClient = () => {
export function createBlacksmithAgentClient() {
const transport = createGrpcTransport({
baseUrl: 'http://192.168.127.1:5557',
baseUrl: `http://192.168.127.1:${process.env.BLACKSMITH_STICKY_DISK_GRPC_PORT || '5557'}`,
httpVersion: '2'
});