Skip to content

Commit 33fc002

Browse files
committed
release-tag: define the release's name
This was probably the reason why it would not automatically publish to the Marketplace. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent e85e742 commit 33fc002

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/release-tag.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,12 @@ jobs:
6969
script: |
7070
const { readFileSync } = require('fs')
7171
72+
const tag_name = readFileSync('tag_name').toString()
7273
await github.repos.createRelease({
7374
owner: context.repo.owner,
7475
repo: context.repo.repo,
75-
tag_name: readFileSync('tag_name').toString(),
76+
tag_name: tag_name,
77+
name: tag_name,
7678
draft: false,
7779
prerelease: false,
7880
body: readFileSync('body').toString()

0 commit comments

Comments
 (0)