Skip to content

Commit

Permalink
[FIX] reorder actions in release_build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
istvnurbn committed Feb 26, 2024
1 parent a106800 commit b1814d9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@ jobs:
scheme: full
run: |
apk add make git
make
mkdir -p compiled
git config --system --add safe.directory '*'
echo "# 📃 changelog\n" >> compiled/CHANGELOG
git log --oneline $(git describe --tags --abbrev=0 @^)..@ --pretty=format:"%h - %s" >> compiled/CHANGELOG
git log $(git describe --tags --abbrev=0 @^)..@ --oneline --date-order --pretty=format:"%h - %s" >> compiled/CHANGELOG
make
- name: 🚀 Release
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit b1814d9

Please sign in to comment.