2
0
Yuki Takei 6 жил өмнө
parent
commit
9d7b0455da

+ 5 - 2
.github/workflows/release.yml

@@ -13,6 +13,11 @@ jobs:
     steps:
     - uses: actions/checkout@v1
 
+    - name: Init Git
+      run: |
+        git config --local user.name "GitHub Action"
+        git config --local user.email "info@weseek.co.jp"
+
     - name: Bump version
       run: |
         npm version patch
@@ -25,8 +30,6 @@ jobs:
 
     - name: Commit
       run: |
-        git config --local user.name "GitHub Action"
-        git config --local user.email "info@weseek.co.jp"
         git commit -m "Release $RELEASE_VERSION"
 
     - name: Push changes