Skip to content

Commit

Permalink
fix git
Browse files Browse the repository at this point in the history
  • Loading branch information
JessyBarrette committed Aug 4, 2023
1 parent e9d7d8c commit 2627f83
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/test-version-bump.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,15 @@ jobs:
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Install git
- name: git
run: |
apt-get install -y git
# setup the username and email. I tend to use 'GitHub Actions Bot' with no email by default
git --version
echo "Path is ... $PATH"
PATH=$PATH:$(which git)
echo "Path is ... $PATH"
git config user.name "GitHub Actions Bot"
git config user.email "<>"
git status
git tag
git describe
- name: Get version difference
shell: bash
run: python .github/workflows/review_version_bump.py -b ${{ github.base_ref}}

0 comments on commit 2627f83

Please sign in to comment.