Skip to content

Commit

Permalink
[fix] 修复pushUrl未配置相关Secrets报错
Browse files Browse the repository at this point in the history
之前的修复版本未考虑充分,这次从yml中进行空值判断
  • Loading branch information
Ghlerrix committed Sep 2, 2023
1 parent d288dcc commit e071c8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pushUrl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Push
env:
URL: ${{ secrets.URL }}
BAIDU_TOKEN: ${{ secrets.BAIDU_TOKENs }}
BAIDU_TOKEN: ${{ secrets.BAIDU_TOKEN }}
BING_API_KEY: ${{ secrets.BING_API_KEY }}
run: |
if [ -n "$URL" ]; then
Expand Down

0 comments on commit e071c8f

Please sign in to comment.