Skip to content

Commit

Permalink
fix: unrequired dollar sign in taskfile
Browse files Browse the repository at this point in the history
  • Loading branch information
devraj committed Jun 29, 2024
1 parent 8e17464 commit 2793034
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ tasks:
prompt: "Before we build, is the version {{.PROJ_VERSION}} number up to date?"
desc: tags the current commit
cmds:
- git tag -a v${{.PROJ_VERSION}} -m "v{{.PROJ_VERSION}}"
- git push origin v${{.PROJ_VERSION}}
- git tag -a v{{.PROJ_VERSION}} -m "v{{.PROJ_VERSION}}"
- git push origin v{{.PROJ_VERSION}}
build:image:
prompt: Have you made sure the version number is up to date?
desc: builds publishable python package
Expand Down

0 comments on commit 2793034

Please sign in to comment.