Skip to content

Commit

Permalink
action: 修复自动部署时 git-revision-date-plugin 日期问题
Browse files Browse the repository at this point in the history
  • Loading branch information
bowling233 committed Oct 19, 2023
1 parent 41ffd41 commit b4a8722
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: 3.x
Expand Down
1 change: 1 addition & 0 deletions docs/programming/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
关于布尔类型的使用:

- 到 `bool` 的转换与到其他整数类型的转换不同: `(bool)0.5`求值为 `1` ,然而 `(int)0.5` 求值为 `​0`​。在给 `_Bool` 类型赋值时需要注意这一点。

<!-- prettier-ignore-end -->

## 数组、字符串
Expand Down

0 comments on commit b4a8722

Please sign in to comment.