-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removing metadata updates from release action
Signed-off-by: Haroon Sheikh <[email protected]>
- Loading branch information
1 parent
8d6c886
commit 8b571c0
Showing
1 changed file
with
1 addition
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,18 +57,4 @@ jobs: | |
if [ $? -ne 0 ];then | ||
exit 1 | ||
fi | ||
done | ||
- name: Setup git | ||
run: | | ||
git config --global user.name "$(git --no-pager log --format=format:'%an' -n 1)" | ||
git config --global user.email "$(git --no-pager log --format=format:'%ae' -n 1)" | ||
- name: Update metadata in gauge-repository | ||
run: | | ||
git clone https://github.com/getgauge/gauge-repository.git | ||
cd gauge-repository | ||
python update_metadata.py go $VERSION | ||
commit_message=$(echo -e "Update go to v$VERSION") | ||
git commit -am "$commit_message" | ||
git push "https://$GITHUB_ACTOR:[email protected]/getgauge/gauge-repository.git" master | ||
done |