From ebac818104aecd50c53592c389c99dfbfd3f787d Mon Sep 17 00:00:00 2001 From: boluomimohesa <143940891+boluomimohesa@users.noreply.github.com> Date: Sun, 12 Nov 2023 00:56:36 +0800 Subject: [PATCH] fix c2c --- .github/workflows/ToDomain.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ToDomain.yml b/.github/workflows/ToDomain.yml index 2b2ad9d..8a7f889 100644 --- a/.github/workflows/ToDomain.yml +++ b/.github/workflows/ToDomain.yml @@ -117,8 +117,9 @@ jobs: env: filterList: grep -E "^(DOMAIN,|DOMAIN-SUFFIX)" | sed "s/^DOMAIN,//g" | sed "s/^DOMAIN-SUFFIX,/+./g" run: | - curl -sSL ${binanceUrl} | ${{ env.filterList }} > ../publish/c2c.txt - curl -sSL ${okxUrl} | ${{ env.filterList }} >> ../publish/c2c.txt + cd publish || exit 1 + curl -sSL ${binanceUrl} | ${{ env.filterList }} > c2c.txt + curl -sSL ${okxUrl} | ${{ env.filterList }} >> c2c.txt - name: Git push assets to "release" branch run: |