Skip to content

Commit

Permalink
2024.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
blakeNaccarato committed Jul 5, 2024
1 parent b1dfbc1 commit 31ac8e4
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,14 @@
{
"label": "task: Bump version",
"type": "shell",
"command": ". scripts/Initialize-Shell.ps1; copier update --vcs-ref=$(git rev-parse HEAD:submodules/template) --defaults --data project_version='${input:version}'; towncrier build --version '${input:version}'; git add .; git commit -m '${input:version}'; git tag --sign -m '${input:version}' '${input:version}'; git push; gh release create --discussion-category='announcements' --notes='' --title='${input:version}' --verify-tag '${input:version}'",
"command": ". scripts/Initialize-Shell.ps1; copier update --vcs-ref=$(git rev-parse HEAD:submodules/template) --defaults --data project_version='${input:version}'; towncrier build --yes --version '${input:version}'; git add .; git commit -m '${input:version}'",
"icon": { "id": "tag" },
"problemMatcher": []
},
{
"label": "task: Release version",
"type": "shell",
"command": ". scripts/Initialize-Shell.ps1; git tag --sign -m $($version = (Get-Content '.copier-answers.yml' | Select-String -Pattern '^project_owner_github_username:\\s(.+)$').Matches.Groups[1].value) $version; git push; gh release create --discussion-category='announcements' --notes='' --title=$version --verify-tag $version",
"icon": { "id": "tag" },
"problemMatcher": []
},
Expand Down

0 comments on commit 31ac8e4

Please sign in to comment.