diff options
| author | Fuwn <[email protected]> | 2026-01-14 08:43:04 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-01-14 08:43:04 +0000 |
| commit | 542c7ab4715ead8894bdfb5922b571ec1def9e5e (patch) | |
| tree | cdff9b23b2ab01381e98fdb618f2a8c749ab245d /justfile | |
| parent | chore(flake.nix): Bump version (diff) | |
| download | gigi-main.tar.xz gigi-main.zip | |
Diffstat (limited to 'justfile')
| -rw-r--r-- | justfile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/justfile b/justfile new file mode 100644 index 0000000..af71fbc --- /dev/null +++ b/justfile @@ -0,0 +1,14 @@ +name := "gigi" + +push tag="latest": + docker buildx build \ + --platform linux/amd64,linux/arm64 \ + -t fuwn/{{ name }}:{{ tag }} \ + --push \ + . + +build: + go build + +run: + go run {{ name }}.go |