-
Notifications
You must be signed in to change notification settings - Fork 4
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
Sasha
committed
Nov 16, 2023
1 parent
41b7c66
commit ed9045e
Showing
1 changed file
with
13 additions
and
10 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 |
---|---|---|
|
@@ -10,6 +10,18 @@ on: | |
branches: [ "TestRuns" ] | ||
|
||
jobs: | ||
|
||
- name: GIT commit and push docs | ||
env: | ||
CI_COMMIT_MESSAGE: Continuous Integration Build Artifacts | ||
CI_COMMIT_AUTHOR: Continuous Integration | ||
run: | | ||
git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}" | ||
git config --global user.email "[email protected]" | ||
git add docs | ||
git commit -m "${{ env.CI_COMMIT_MESSAGE }}" | ||
git push | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
@@ -37,16 +49,7 @@ jobs: | |
with: | ||
dotnet-version: 6.0.x | ||
|
||
- name: GIT commit and push docs | ||
env: | ||
CI_COMMIT_MESSAGE: Continuous Integration Build Artifacts | ||
CI_COMMIT_AUTHOR: Continuous Integration | ||
run: | | ||
git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}" | ||
git config --global user.email "[email protected]" | ||
git add docs | ||
git commit -m "${{ env.CI_COMMIT_MESSAGE }}" | ||
git push | ||
|
||
|
||
|
||
|
||
|