Skip to content

Commit

Permalink
#14: Add git configuration.
Browse files Browse the repository at this point in the history
  • Loading branch information
annoviko committed Oct 7, 2021
1 parent 48a394e commit c93a372
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/release-httpctrl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
env:
HTTPCTRL_USERNAME: ${{ secrets.HTTPCTRL_USERNAME }}
HTTPCTRL_PASSWORD: ${{ secrets.HTTPCTRL_PASSWORD }}
HTTPCTRL_EMAIL: ${{ secrets.HTTPCTRL_EMAIL }}
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.12
0.1.13
7 changes: 7 additions & 0 deletions ci/github-ci-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ PATH_REPO_CURRENT=`readlink -f .`
PATH_SOURCE=`readlink -f src`


# configure git to push changes
echo "[INFO] Configure git to commit and push changes."

git config --global user.email $HTTPCTRL_EMAIL
git config --global user.name $HTTPCTRL_USERNAME


# increment release
echo "[INFO] Fetch and increment."

Expand Down

0 comments on commit c93a372

Please sign in to comment.