Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
goulven authored and goulven committed Jan 4, 2024
1 parent 6f2dc84 commit e511eec
Showing 1 changed file with 18 additions and 12 deletions.
30 changes: 18 additions & 12 deletions .github/workflows/releaseDeployProd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,9 @@ jobs:


############################################
# Create the release with changelog
###########################################


# Create the release with changelog,
# PR Oriented
###########################################
- name: "Build Changelog"
id: build_changelog
uses: mikepenz/[email protected]
Expand Down Expand Up @@ -80,6 +79,11 @@ jobs:
}
############################################
# Create the release with changelog,
# push Oriented
###########################################

- name: "Build Changelog push oriented"
id: build_changelog_push
uses: mikepenz/[email protected]
Expand All @@ -91,28 +95,30 @@ jobs:
commitMode: true
configurationJson: |
{
"template": "## Commits\n#{{UNCATEGORIZED}}",
"template": "# 🙈 All the commits\n#{{UNCATEGORIZED}}",
"pr_template": "#{{TITLE}} (#{{AUTHOR}})",
"empty_template": "Nothing",
"categories": []
}
############################################
# Merge the backlogs
###########################################

- name: Merge site
run: cat PUSH-CHANGELOG.txt >> PR-CHANGELOG.txt


############################################
# Create the release
###########################################

- name: Create Release
uses: mikepenz/[email protected] #softprops/action-gh-release
with:
body: ${{ steps.build_changelog.outputs.changelog }}
body_path: ${{ github.workspace }}/PR-CHANGELOG.txt
body: ${{ steps.build_changelog.outputs.changelog }}








0 comments on commit e511eec

Please sign in to comment.