From c1123cf67551bc5fc429dd3949285166bb3425b5 Mon Sep 17 00:00:00 2001 From: Wires77 Date: Wed, 29 Oct 2025 23:17:53 -0500 Subject: [PATCH] Merge PoB2 PR #1400 https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/pull/1400 (#9078) --- .github/workflows/beta.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/beta.yml b/.github/workflows/beta.yml index 131f5d58..24db2f3d 100644 --- a/.github/workflows/beta.yml +++ b/.github/workflows/beta.yml @@ -16,6 +16,7 @@ jobs: uses: actions/checkout@v3 with: ref: 'dev' + fetch-depth: 0 - name: Configure bot user run: | git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" @@ -32,7 +33,9 @@ jobs: gh release delete beta --yes fi # Create new beta draft release with generated notes - gh release create beta --title "Beta Release" --draft --generate-notes + # Make sure the latest tag is correct, even if the current commit is already tagged + LATEST_TAG=$(git describe --tags --abbrev=0) + gh release create beta --title "Beta Release" --draft --generate-notes --notes-start-tag "$LATEST_TAG" gh release view beta > temp_change.md - name: Tweak changelogs run: |