From 40eb031a15fb51a6d7773e54845988423ec41fd5 Mon Sep 17 00:00:00 2001 From: Ghlerrix Date: Sat, 2 Sep 2023 15:25:17 +0800 Subject: [PATCH] test no arg --- .github/workflows/pushUrl.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pushUrl.yml b/.github/workflows/pushUrl.yml index 5cd0b7ce..c1f90281 100644 --- a/.github/workflows/pushUrl.yml +++ b/.github/workflows/pushUrl.yml @@ -37,10 +37,11 @@ jobs: - name: Check if Secret exists env: - URL_SECRET: ${{ secrets.URLs }} + URL_SECRET: ${{ secrets.URL }} run: | if [ -n "$URL_SECRET" ]; then echo "Secret URL_SECRET exists." + python pushUrl.py --url ${{ secrets.URL }} --baidu_token ${{ secrets.BAIDU_TOKENs }} --bing_api_key ${{ secrets.BING_API_KEYs }} else echo "Secret URL_SECRET does not exist." fi