🐛 Fix the problem of generating docker under release

This commit is contained in:
Tw93
2025-08-22 16:55:31 +08:00
parent 7e84eaeca6
commit 1c62b2deed
2 changed files with 37 additions and 3 deletions

View File

@@ -30,11 +30,45 @@ jobs:
with:
token: ${{ secrets.TOKEN }}
- name: Update Contributors
- name: Update Contributors in README.md
uses: akhilmhdh/contributors-readme-action@v2.3.6
with:
image_size: 90
columns_per_row: 7
readme_path: README.md
use_username: false
collaborators: direct
commit_message: docs(contributor): contrib-readme-action has updated README.md
auto_detect_branch_protection: true
pr_title_on_protected: docs(contributor): contributors readme action update
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
- name: Update Contributors in README_CN.md
uses: akhilmhdh/contributors-readme-action@v2.3.6
with:
image_size: 90
columns_per_row: 7
readme_path: README_CN.md
use_username: false
collaborators: direct
commit_message: docs(contributor): contrib-readme-action has updated README_CN.md
auto_detect_branch_protection: true
pr_title_on_protected: docs(contributor): contributors readme action update
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
- name: Update Contributors in README_JP.md
uses: akhilmhdh/contributors-readme-action@v2.3.6
with:
image_size: 90
columns_per_row: 7
readme_path: README_JP.md
use_username: false
collaborators: direct
commit_message: docs(contributor): contrib-readme-action has updated README_JP.md
auto_detect_branch_protection: true
pr_title_on_protected: docs(contributor): contributors readme action update
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}