Skip to content

Commit a6cdf65

Browse files
committed
Update tag variable
1 parent 1989be0 commit a6cdf65

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
github.rest.git.createRef({
2929
owner: context.repo.owner,
3030
repo: context.repo.repo,
31-
ref: 'refs/tags/$VERSION',
31+
ref: `refs/tags/${process.env.VERSION}`,
3232
sha: context.sha
3333
})
3434
@@ -39,8 +39,8 @@ jobs:
3939
github.rest.repos.createRelease({
4040
owner: context.repo.owner,
4141
repo: context.repo.repo,
42-
tag_name: '$VERSION',
43-
name: '$VERSION',
42+
tag_name: `${process.env.VERSION}`,
43+
name: `${process.env.VERSION}`,
4444
draft: false,
4545
prerelease: false
4646
})

0 commit comments

Comments
 (0)