From d0d8b2aef73a33606727672ddf0bbeeffb847e26 Mon Sep 17 00:00:00 2001 From: Ken DLG Date: Mon, 8 Jan 2024 22:14:42 -0500 Subject: [PATCH] Fixed pipeline syntax error --- .github/workflows/build-and-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-publish.yml b/.github/workflows/build-and-publish.yml index 0b37cecf4..77434ee3d 100644 --- a/.github/workflows/build-and-publish.yml +++ b/.github/workflows/build-and-publish.yml @@ -73,7 +73,7 @@ jobs: steps: - id: get-server-ip-list name: Get Server IP List - run: echo "get-server-ip-list=$(dig +short app-servers.pathology.gg TXT | jq -cr 'split(\",\")')" >> $GITHUB_OUTPUT + run: echo "get-server-ip-list=$(dig +short app-servers.pathology.gg TXT | jq -cr 'split(",")')" >> $GITHUB_OUTPUT - name: print output run: | echo "${{ steps.get-server-ip-list.outputs.get-server-ip-list }}"