From cb28b6c1a958e1722f1ec0f848fa36bb731bf8db Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Fri, 28 Jan 2022 16:03:35 +0100 Subject: [PATCH] workflows/sync_release-manifest: skip v prefix in release manifests Signed-off-by: Patrik Oldsberg --- .github/workflows/sync_release-manifest.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_release-manifest.yml b/.github/workflows/sync_release-manifest.yml index 4fc5d20708..39e270af16 100644 --- a/.github/workflows/sync_release-manifest.yml +++ b/.github/workflows/sync_release-manifest.yml @@ -3,7 +3,7 @@ on: workflow_dispatch: inputs: version: - description: 'Version number' + description: Version number, without any 'v' prefix required: true jobs: create-new-version: @@ -21,7 +21,8 @@ jobs: uses: actions/checkout@v2 with: path: backstage - ref: ${{ github.event.inputs.version }} + # 'v' prefix is added here for the tag, we keep it out of the manifest logic + ref: v${{ github.event.inputs.version }} # Checkout backstage/versions into /backstage/versions, which is where store the output - name: Checkout versions