We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62a24e7 commit 78d72dbCopy full SHA for 78d72db
.github/workflows/build.yml
@@ -44,7 +44,7 @@ jobs:
44
45
- name: Collect commit ranges
46
run: |
47
- echo "CHANGELOG=$(git log main --since "$(git show -s --format=%ci $(git rev-list --tags --max-count=1))" --pretty='format:- %s')" >> $GITHUB_OUTPUT
+ echo "CHANGELOG=$(bash ./scripts/changelog.sh)" >> $GITHUB_OUTPUT
48
49
- name: Create Release
50
uses: softprops/action-gh-release@v1
scripts/changelog.sh
@@ -0,0 +1 @@
1
+git log main --since "$(git show -s --format=%ci $(git rev-list --tags --max-count=1))" --pretty='format:- %s'
0 commit comments