Skip to content

Commit

Permalink
ci: skip changelog creation if the ui is not default to avoid having …
Browse files Browse the repository at this point in the history
…multiple CHANGELOG created
  • Loading branch information
gnuton committed Jul 1, 2024
1 parent 435d2ff commit a9ff0b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
echo "Release detected. Updating version.conf with MAJOR_VER=${MAJOR_VER} and MINOR_VER=${MINOR_VER}"
fi
- name: Generate changelog
if: matrix.cfg.skip == false
if: matrix.cfg.skip == false && matrix.ui == "default"
run: |
cd ${PROJECT_DIR}
python tools/get-last-notes.py > "${CHANGELOG_FILE}"
Expand Down

0 comments on commit a9ff0b9

Please sign in to comment.