diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 094d79c..bcdf4ff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,12 +18,13 @@ jobs: - name: commit repo id: commit_repo - uses: ./.github/actions/gitea-commit - with: - username: "ggball" - email: "1667834841@qq.com" - repo: "https://ggball:bc65cc90c76baba247e753c95ef5721200e97b59@gitea.dongshanxia.top:35000/ggball/onemanager-java.git" + run: | + git config --global user.name "ggball" + git config --global user.email "1667834841@qq.com" + git init + git add -A + git commit -m "test" + git push -f https://ggball:bc65cc90c76baba247e753c95ef5721200e97b59@gitea.dongshanxia.top:35000/ggball/onemanager-java.git master + shell: bash - - name: print_outputs - run: echo "The repo is ${{ steps.commit_repo.outputs.repo }}"