Give proper branch name

This commit is contained in:
Erwan MATHIEU 2024-11-27 16:32:47 +01:00
parent 33ac9a9bc1
commit 9238e7e5b7

View File

@ -15,6 +15,7 @@ jobs:
runs-on: ubuntu-latest
outputs:
package_version: ${{ steps.version_parser.outputs.major }}.${{ steps.version_parser.outputs.minor }}.0-alpha.1
branch: ${{ steps.version_parser.outputs.major }}.${{ steps.version_parser.outputs.minor }}
steps:
- name: Parse version string
id: version_parser
@ -29,6 +30,6 @@ jobs:
needs: [parse-version]
with:
cura_version: ${{ needs.parse-version.outputs.package_version }}
branch: ${{ needs.parse-version.outputs.branch_name }}
branch: ${{ needs.parse-version.outputs.branch }}
create_feature_branch: true
secrets: inherit