From bee34751b745750867956d4863a4eba22213bd33 Mon Sep 17 00:00:00 2001 From: sh-lee Date: Thu, 8 Aug 2024 20:11:05 +0000 Subject: [PATCH] bump test --- .github/workflows/deployment.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/deployment.yaml b/.github/workflows/deployment.yaml index 2cfafea..e438be5 100644 --- a/.github/workflows/deployment.yaml +++ b/.github/workflows/deployment.yaml @@ -62,6 +62,11 @@ jobs: python -m pip install --upgrade pip pip install bump2version setuptools wheel twine + - name: Configure Git + run: | + git config --global user.email "sh-lee@snu.ac.kr" + git config --global user.name "sh-lee" + - name: Bump version id: bump_version run: | @@ -74,6 +79,8 @@ jobs: run: | git push origin --tags git push origin HEAD:main + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Create GitHub Release id: create_release