From 45e0c05a3142d3733d73ff56e46bfabcb43c43ff Mon Sep 17 00:00:00 2001 From: ggball <1667834841@qq.com> Date: Sun, 16 Jan 2022 15:23:00 +0800 Subject: [PATCH] =?UTF-8?q?ci=20=E6=8F=90=E4=BA=A4gitea=E4=BB=93=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) 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 }}"