Skip to content

Commit 3cd08f9

Browse files
ci: prefix version tag with v when creating a release (#49)
1 parent e1432bc commit 3cd08f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/create_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ jobs:
5050
- name: Create Release
5151
uses: ncipollo/release-action@v1
5252
with:
53-
name: "Wireshark SMF Plugin ${{ inputs.version_major }}.${{ inputs.version_minor }}.${{ inputs.version_patch }}"
54-
tag: "${{ inputs.version_major }}.${{ inputs.version_minor }}.${{ inputs.version_patch }}"
53+
name: "v${{ inputs.version_major }}.${{ inputs.version_minor }}.${{ inputs.version_patch }}"
54+
tag: "v${{ inputs.version_major }}.${{ inputs.version_minor }}.${{ inputs.version_patch }}"
5555
artifacts: "${{ env.LINUX_PLUGIN_NAME }}/*, ${{ env.WINDOWS_PLUGIN_NAME }}/*, ${{ env.MACOS_PLUGIN_NAME }}/*"
5656
bodyFile: "${{ github.workspace }}/.github/workflows/docs/wireshark_smf_${{ inputs.version_major }}-${{ inputs.version_minor }}-x_instructions.md"
5757
draft: true

0 commit comments

Comments
 (0)