Files
autocal/Taskfile.yml
darwincereska 734c56eace temp
2026-03-05 21:13:16 -05:00

22 lines
549 B
YAML

version: "3"
tasks:
docker-build:
desc: Builds a docker image for linux/amd64
cmd: docker buildx build --platform linux/amd64 -t autocal:latest .
docker-tag:
desc: Tag docker build
cmd: docker tag autocal:latest git.darwincereska.dev/darwincereska/autocal:latest
docker-push:
desc: Push to repository
cmd: docker push git.darwincereska.dev/darwincereska/autocal:latest
docker-all:
desc: Build, tag, and release docker image
cmds:
- task docker-build
- task docker-tag
- task docker-push