diff --git a/..HEAD b/..HEAD new file mode 100644 index 0000000..e69de29 diff --git a/.github/workflows/game_ci.yml b/.github/workflows/game_ci.yml index 58cfa5c..6a5df6a 100644 --- a/.github/workflows/game_ci.yml +++ b/.github/workflows/game_ci.yml @@ -17,12 +17,17 @@ jobs: - name: 🛎 Checkout uses: actions/checkout@v4 with: - # you need full history to collect changes correctly fetch-depth: 0 - name: 📋 Get Changes between Tags id: changes - uses: simbo/changes-between-tags-action@v1 + run: | + git fetch --tags + latest_tag=$(git describe --tags --abbrev=0) + changelog=$(git log $latest_tag..HEAD --oneline) + echo "commit_log<> $GITHUB_ENV + echo "$changelog" >> $GITHUB_ENV + echo "EOF" >> $GITHUB_ENV web: runs-on: ubuntu-latest @@ -183,7 +188,7 @@ jobs: ## Release Notes for Version ${{env.GitVersion_MajorMinorPatch}} ### Commits: - ${{ needs.commit_log.outputs.commit_log }} + ${{ env.commit_log }} ### Additional Information: As always thanks for playing!