ci: configure git before bumping version

This commit is contained in:
Rémi Alvergnat
2021-02-06 01:12:32 +01:00
parent 8e4ba6f0e4
commit 79014e0a8f
2 changed files with 21 additions and 5 deletions
+20 -4
View File
@@ -93,6 +93,11 @@ jobs:
run: |
pip install -e .[dev]
- name: Git User config
run: |
git config --global user.email "action@github.com"
git config --global user.name "github-actions"
- name: Bump version
run: semantic-release -v DEBUG version
@@ -125,6 +130,11 @@ jobs:
run: |
pip install -e .[dev]
- name: Git User config
run: |
git config --global user.email "action@github.com"
git config --global user.name "github-actions"
- name: Bump version
run: semantic-release -v DEBUG version
@@ -161,6 +171,11 @@ jobs:
run: |
pip install -e .[dev]
- name: Git User config
run: |
git config --global user.email "action@github.com"
git config --global user.name "github-actions"
- name: Bump version
run: semantic-release -v DEBUG version
@@ -196,6 +211,11 @@ jobs:
run: |
pip install -e .[dev]
- name: Git User config
run: |
git config --global user.email "action@github.com"
git config --global user.name "github-actions"
- name: Bump version
run: semantic-release -v DEBUG version
@@ -231,8 +251,6 @@ jobs:
with:
path: artifacts
- run: ls -alR artifacts
- name: Copy artifacts to ./dist
run: |
mkdir -p ./dist
@@ -241,8 +259,6 @@ jobs:
mv artifacts/guessit-bin-windows/guessit.exe ./dist/guessit-windows.exe
mv artifacts/guessit-python/* ./dist
- run: ls -al ./dist
- name: Git User config
run: |
git config --global user.email "action@github.com"