Skip to content

Commit

Permalink
Trying to fix gh actions again
Browse files Browse the repository at this point in the history
  • Loading branch information
StaringLongingly committed Aug 24, 2024
1 parent a5f091f commit 47e41ea
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
Empty file added ..HEAD
Empty file.
11 changes: 8 additions & 3 deletions .github/workflows/game_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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<<EOF" >> $GITHUB_ENV
echo "$changelog" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
web:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -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!
Expand Down

0 comments on commit 47e41ea

Please sign in to comment.