Skip to content

Commit

Permalink
GIT commit and push docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Sasha committed Nov 16, 2023
1 parent 41b7c66 commit ed9045e
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions .github/workflows/ubuntodotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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




Expand Down

0 comments on commit ed9045e

Please sign in to comment.