Skip to content
This repository has been archived by the owner on Oct 4, 2024. It is now read-only.

Commit

Permalink
build: update to match TR1X
Browse files Browse the repository at this point in the history
  • Loading branch information
rr- committed Apr 24, 2024
1 parent 4a1ae3a commit f7e605f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,8 @@ jobs:

- name: "Checkout code"
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: "Download built game assets"
uses: actions/download-artifact@v4
Expand All @@ -107,7 +109,10 @@ jobs:

- name: "Generate changelog"
run: |
just output-current-changelog > _changes.txt
hash=$(git log -1 --pretty=format:%H)
tag=$(just output-current-version)
echo -e "**Commit: $hash** \n**Tag: $tag**\n\n### Changes\n" > _changes.txt
just output-current-changelog >> _changes.txt
- name: "Get information on the latest pre-release"
if: ${{ inputs.prerelease == true || inputs.prerelease == 'true' }}
Expand Down

0 comments on commit f7e605f

Please sign in to comment.