Skip to content

Commit

Permalink
Fix snapshot publishing (#7692)
Browse files Browse the repository at this point in the history
Snapshot publishing fails since #7651 since `git describe` cannot work on the checked out repository. This PR should make it work again.
  • Loading branch information
snazy authored Nov 6, 2023
1 parent def763d commit 5b73f87
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/snapshot-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ jobs:

steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
fetch-depth: '0'
- name: Setup runner
uses: ./.github/actions/setup-runner
- name: Setup Java, Gradle
Expand Down

0 comments on commit 5b73f87

Please sign in to comment.