Skip to content

Commit 0d5d154

Browse files
fixed lint errors
1 parent 30de824 commit 0d5d154

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build-node-python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ jobs:
172172
steps:
173173
- name: Connect service to default network
174174
if: startsWith(runner.name, 'GitHub Actions') == false #self-hosted runner have random name, unlike default name: Github Actions*
175-
run: docker network connect $GH_ACTIONS_SELF_HOSTED_NETWORK_NAME postgres_${{ inputs.branch }}_${{ github.run_id }}
175+
run: docker network connect $GH_ACTIONS_SELF_HOSTED_NETWORK_NAME ${{ env.POSTGRES_HOSTNAME }}
176176
- name: Checkout source repository
177177
uses: actions/checkout@v4
178178
with:
@@ -274,7 +274,7 @@ jobs:
274274
steps:
275275
- name: Connect service to default network
276276
if: startsWith(runner.name, 'GitHub Actions') == false
277-
run: docker network connect $GH_ACTIONS_SELF_HOSTED_NETWORK_NAME postgres_${{ inputs.branch }}_${{ github.run_id }}
277+
run: docker network connect $GH_ACTIONS_SELF_HOSTED_NETWORK_NAME ${{ env.POSTGRES_HOSTNAME }}
278278
- name: Checkout source repository
279279
uses: actions/checkout@v4
280280
with:

0 commit comments

Comments
 (0)