Skip to content

Commit

Permalink
Display authors from git log (2)
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Maier <[email protected]>
  • Loading branch information
andy-maier committed Oct 9, 2024
1 parent 2784529 commit 794b09f
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,15 +152,21 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 50
# fetch-depth 0 checks out all history for all branches and tags.
# This is needed to get the authors from git.
fetch-depth: 0

# - name: Downgrade Git version to 2.46.1
# run: |
# sudo add-apt-repository -y ppa:git-core/ppa
# sudo apt-get update
# sudo apt-get install -y git=2.46.1
# - name: Verify Git version
# run: git --version
- name: Debug - Display git authors
run: |
git shortlog --summary --email
- name: Downgrade Git version to 2.46.1
run: |
sudo add-apt-repository -y ppa:git-core/ppa
sudo apt-get update
sudo apt-get install -y git=2.46.1
- name: Verify Git version
run: git --version

- name: Debug - Display git authors
run: |
Expand Down

0 comments on commit 794b09f

Please sign in to comment.