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