From 9dd7cb12ab4db7b51b7697c6db70b2832ff682ac Mon Sep 17 00:00:00 2001 From: Evan Pagryzinski Date: Tue, 12 Nov 2024 12:50:16 -0500 Subject: [PATCH] Adding fetch depth 0 Didnt have the fetch depth 0 on the pre-release creation job so the version name of the artifacts were screwed up. Fixing that --- .github/workflows/commitChecks.yml | 4 ++++ .github/workflows/prerelease.yml | 2 ++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/commitChecks.yml b/.github/workflows/commitChecks.yml index 753c51232..5eff98633 100644 --- a/.github/workflows/commitChecks.yml +++ b/.github/workflows/commitChecks.yml @@ -81,6 +81,8 @@ jobs: steps: - uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Set up JDK 17 uses: actions/setup-java@v4 with: @@ -196,6 +198,8 @@ jobs: steps: - uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Set up JDK 17 uses: actions/setup-java@v4 with: diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index 640dc98a9..eaae80e2f 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -14,6 +14,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Set up JDK 17 uses: actions/setup-java@v4 with: