Skip to content

Commit

Permalink
source - actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Sasha committed Nov 16, 2023
1 parent 7fbbbcb commit e44607a
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions .github/workflows/ubuntodotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,6 @@ name: .NET
on:
pull_request_target:
branches: [ "TestRuns" ]

- 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 TestRuns

jobs:

Expand Down Expand Up @@ -53,7 +41,21 @@ jobs:
- name: Install Python 3
uses: actions/setup-python@v1
with:
python-version: 3.11.6
python-version: 3.11.6



- 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 TestRuns
#installing packages
- name: Install Python pandas
Expand Down

0 comments on commit e44607a

Please sign in to comment.