Skip to content

Commit

Permalink
v0.1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
martinhaintz committed Jan 8, 2022
1 parent 45f4d71 commit 22e9f88
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions release.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Param(
[Parameter(Mandatory=$true)]
[string]$version

) #end param
cmd.exe /c npm 'test' '--' '--runInBand' '--watchAll=false'
cmd.exe /c npm run prepare
cmd.exe /c git add .
cmd.exe /c git add dist
cmd.exe /c git commit -m "$($version) release"
cmd.exe /c git tag -a -m "$($version) release" "$($version)"
cmd.exe /c git push

0 comments on commit 22e9f88

Please sign in to comment.