-
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
52a15c3
commit c5640ad
Showing
1 changed file
with
9 additions
and
3 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 |
---|---|---|
|
@@ -122,12 +122,18 @@ jobs: | |
run: | | ||
cp ./addons/glecs/ ../nightly | ||
- name: 📤 Commit to nightly branch | ||
- name: Set github name and email | ||
run: | | ||
cd ../nightly | ||
git config user.name "github-actions[bot]" | ||
git config user.email "[email protected]" | ||
git --global config user.name "github-actions[bot]" | ||
git --global config user.email "[email protected]" | ||
- name: Commit | ||
run: | | ||
git commit --all -m "(AUTO) ${{ github.event.head_commit.message }}" | ||
- name: Push | ||
run: | | ||
git push origin nightly | ||