Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Kutu committed Feb 1, 2025
1 parent d11b9fb commit 6b71b66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -106,13 +106,13 @@ new-project project_name:
# Build the Docker image of a project given a git tag. Mostly used in the CI/CD
[script]
build-docker-image tag:
let tag = ({{tag}} | parse "{project}/{version}").0
let tag = ("{{tag}}" | parse "{project}/{version}").0

just -f $"./projects/($tag.project)/justfile" build-docker-image $tag.version

# Publish to ghcr.io the Docker image of a project given a git tag. Mostly used in the CI/CD
[script]
publish-docker-image tag:
let tag = ({{tag}} | parse "{project}/{version}").0
let tag = ("{{tag}}" | parse "{project}/{version}").0

docker push $"ghcr.io/kutu-dev/($tag.project):($tag.version)"

0 comments on commit 6b71b66

Please sign in to comment.