forked from OpenCatalogi/opencatalogi
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5c287d7
commit c9a1b14
Showing
1 changed file
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: Release Workflow | ||
|
||
on: [merge, push] | ||
on: [push] | ||
|
||
jobs: | ||
release-managment: | ||
|
@@ -36,11 +36,15 @@ jobs: | |
# Update the summary in info.xml | ||
sed -i "s|<summary>.*</summary>|<summary>${description}</summary>|" apinfo/info.xml | ||
- name: Commit and push updated info.xml | ||
- name: Run Changelog CI | ||
uses: saadmk11/[email protected] | ||
|
||
- name: Commit and push updated info.xml and changelog.md | ||
run: | | ||
git config user.name "github-actions[bot]" | ||
git config user.email "github-actions[bot]@users.noreply.github.com" | ||
git add apinfo/info.xml | ||
git add changelog.md | ||
git commit -m "Update version and summary in info.xml to ${{ steps.version.outputs.version }}" | ||
git push origin ${{ github.head_ref }} | ||
|