-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
04e95c9
commit 658596c
Showing
1 changed file
with
8 additions
and
0 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 |
---|---|---|
|
@@ -64,6 +64,14 @@ jobs: | |
mkdir -p docs | ||
mv -f doc/* docs/ | ||
- name: Configure Git And Commit changes | ||
run: | | ||
git config user.name "MarcioFPaludo" | ||
git config user.email "[email protected]" | ||
git add . | ||
git commit -m "Commit via GitHub Action" || echo "Nenhuma mudança para commitar." | ||
git push | ||
# - name: Publish to GPR | ||
# run: | | ||
# mkdir -p $HOME/.gem | ||
|