Skip to content

Commit

Permalink
GIT commit and push all changed files
Browse files Browse the repository at this point in the history
  • Loading branch information
Sasha committed Nov 16, 2023
1 parent ef3d322 commit e8070fe
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/ubuntodotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,14 @@ jobs:
run: echo "new_page_url=${{ steps.deployment.outputs.page_url }}index.html" >> $GITHUB_OUTPUT

- name: ls
run: ls -a
run: ls -a

- name: GIT commit and push all changed files
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 "username@users.noreply.github.com"
git commit -a -m "${{ env.CI_COMMIT_MESSAGE }}"
git push

0 comments on commit e8070fe

Please sign in to comment.