Skip to content

Commit 82496cc

Browse files
authored
Merge pull request #84 from amplify-education/hotfix/release-notes-changes
Fix creating of release notes
2 parents 575e194 + bd7ee64 commit 82496cc

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -37,28 +37,18 @@ jobs:
3737
echo "VERSION_CHANGED=true" >> "$GITHUB_ENV"
3838
fi
3939
40-
4140
- name: Create tag
4241
uses: rickstaa/action-create-tag@v1
4342
if: env.VERSION_CHANGED == 'true'
4443
with:
4544
tag: "v${{ steps.extract_version.outputs.version }}"
4645

47-
- name: Make changelog
48-
if: env.VERSION_CHANGED == 'true'
49-
id: create_changelog
50-
uses: mikepenz/release-changelog-builder-action@v3
51-
env:
52-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
53-
with:
54-
toTag: 'v${{ steps.extract_version.outputs.version }}'
55-
5646
- name: Create release
5747
if: env.VERSION_CHANGED == 'true'
5848
uses: softprops/action-gh-release@v1
5949
with:
6050
tag_name: 'v${{ steps.extract_version.outputs.version }}'
61-
body: ${{steps.create_changelog.outputs.changelog}}
51+
generate_release_notes: 1
6252
env:
6353
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6454

0 commit comments

Comments
 (0)