Skip to content

Commit

Permalink
对ip部分启用错误分析
Browse files Browse the repository at this point in the history
  • Loading branch information
QuantumEdgeCode authored Dec 26, 2023
1 parent 0d60470 commit 7016351
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ jobs:
- name: 'Get Date'
run: echo "REPORT_DATE=$(TZ=':Asia/Shanghai' date '+%Y-%m-%d %T')" >> $GITHUB_ENV
- name: 'Get IP Address'
run: echo "IP_ADDRESS=$(curl -s https://api64.ipify.org?format=json | jq -r '.ip')" >> $GITHUB_ENV
run: |
set +x
echo "IP_ADDRESS=$(curl -s https://api64.ipify.org?format=json | jq -r '.ip')" >> $GITHUB_ENV
set -x
- name: 'Send mail'
uses: dawidd6/action-send-mail@master
with:
Expand Down

0 comments on commit 7016351

Please sign in to comment.