Skip to content

Commit

Permalink
chore: fix release pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
moshloop committed Oct 11, 2024
1 parent f2a7ccb commit e3e0c31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
workflow_dispatch:
inputs:
version:
description: New version to create
description: New version to create (e.g. 1.0.0)
required: false
default: ""
channel:
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
github.rest.git.createRef({
owner: context.repo.owner,
repo: context.repo.repo,
ref: 'refs/tags/${{ inputs.version }}',
ref: 'refs/tags/v${{ inputs.version }}',
sha: context.sha
})
binary:
Expand Down

0 comments on commit e3e0c31

Please sign in to comment.