Skip to content

Commit

Permalink
Merge pull request #20 from HydrolienF/1.21.4
Browse files Browse the repository at this point in the history
Create an empty CHANGELOG.md if missing
  • Loading branch information
HydrolienF authored Dec 27, 2024
2 parents 8eefe7e + 8947102 commit 1c2f6da
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,13 @@ jobs:
echo "Version: ${{ steps.version.outputs.version }}"
echo "Release Name: ${{ steps.version.outputs.releaseName }}"
- name: Create an empty CHANGELOG.md if missing
run: |
if [ ! -f CHANGELOG.md ]; then
touch CHANGELOG.md
fi
- name: Create Release
id: createRelease
uses: softprops/action-gh-release@v2
Expand Down

0 comments on commit 1c2f6da

Please sign in to comment.