1
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2026-04-09 18:20:55 +02:00

Compare commits

...

2 Commits

Author SHA1 Message Date
0013f3a506 ci: fix permissions for release job 2025-05-19 13:40:50 +02:00
e33de12747 ci: fix missing build dependencies 2025-05-19 13:27:48 +02:00
2 changed files with 4 additions and 5 deletions

View File

@@ -26,6 +26,9 @@ jobs:
QTWEBENGINE_DISABLE_SANDBOX: 1
QT_QPA_PLATFORM: "offscreen"
permissions:
contents: write
steps:
# Note: We checkout the repository at the branch that triggered the workflow
# with the entire history to ensure to match PSR's release branch detection
@@ -81,10 +84,6 @@ jobs:
printf '%s\n' "Verified upstream branch has not changed, continuing with release..."
- name: Setup | Install Dependencies
run: |
pip install build wheel
- name: Action | Semantic Version Release
id: release
# Adjust tag with desired version if applicable.

View File

@@ -71,7 +71,7 @@ include_trailing_comma = true
known_first_party = ["bec_widgets"]
[tool.semantic_release]
build_command = "python -m build"
build_command = "pip install build wheel && python -m build"
version_toml = ["pyproject.toml:project.version"]
[tool.semantic_release.commit_author]