Skip to content

Commit

Permalink
feat(ci): 添加初始化Git仓库步骤
Browse files Browse the repository at this point in the history
  • Loading branch information
elysia-best committed Dec 11, 2024
1 parent 0f8600b commit b54e176
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,15 @@ jobs:
- name: Checkout Source
uses: actions/checkout@v3

- name: Init Git Repo
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Action"
git init .
git add .
git commit -m "Initial commit" || true
- name: Build Debian Src Package
uses: LingmoOS/[email protected]
with:
Expand Down

0 comments on commit b54e176

Please sign in to comment.