Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
jjjermiah committed Feb 3, 2024
1 parent ef7db33 commit 4d18a86
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,13 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3

- name: Get Current branch
run: |
echo "Current branch is: ${{ github.ref }}"
echo "Current branch is: ${{ github.head_ref }}"
echo "Current branch is: ${{ github.base_ref }}"
echo "Current branch is: ${{ github.event_name }}"
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
Expand Down Expand Up @@ -309,7 +316,9 @@ jobs:
# Commit with a timestamp
git commit -m "Update README with latest version: $LATEST_TAG"
#[detached HEAD 718fec3] Update README with latest version: 0.19.2
# Push changes to the remote repository
git push
echo "Changes committed and pushed successfully."
else
Expand Down

0 comments on commit 4d18a86

Please sign in to comment.