Skip to content

Commit

Permalink
release-tag: define the release's name
Browse files Browse the repository at this point in the history
This was probably the reason why it would not automatically publish to
the Marketplace.

Signed-off-by: Johannes Schindelin <[email protected]>
  • Loading branch information
dscho committed Mar 29, 2021
1 parent e85e742 commit 33fc002
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,12 @@ jobs:
script: |
const { readFileSync } = require('fs')
const tag_name = readFileSync('tag_name').toString()
await github.repos.createRelease({
owner: context.repo.owner,
repo: context.repo.repo,
tag_name: readFileSync('tag_name').toString(),
tag_name: tag_name,
name: tag_name,
draft: false,
prerelease: false,
body: readFileSync('body').toString()
Expand Down

0 comments on commit 33fc002

Please sign in to comment.