2 Commits

Author SHA1 Message Date
6769d66d48 Bump flake.nix version to match latest tag
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-27 02:16:49 -07:00
02a28cff67 Migrate module path from kyle/ to mc/ org
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-27 02:07:56 -07:00
5 changed files with 8 additions and 6 deletions

View File

@@ -18,5 +18,5 @@ go vet ./... # vet
- **Commands** — `build`, `push`, `deploy`, `cert renew`, `status` - **Commands** — `build`, `push`, `deploy`, `cert renew`, `status`
- **Exec model** — shells out to `podman`, `ssh`, `scp`, and `git` for all operations - **Exec model** — shells out to `podman`, `ssh`, `scp`, and `git` for all operations
- **No auth** — relies on SSH keys and existing podman/registry auth - **No auth** — relies on SSH keys and existing podman/registry auth
- **Module path**: `git.wntrmute.dev/kyle/mcdeploy` - **Module path**: `git.wntrmute.dev/mc/mcdeploy`
- **Dependencies**: cobra (CLI), go-toml/v2 (config) - **Dependencies**: cobra (CLI), go-toml/v2 (config)

View File

@@ -10,7 +10,7 @@
let let
system = "x86_64-linux"; system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};
version = "0.1.0"; version = "0.2.0";
in in
{ {
packages.${system} = { packages.${system} = {

9
go.mod
View File

@@ -1,10 +1,13 @@
module git.wntrmute.dev/kyle/mcdeploy module git.wntrmute.dev/mc/mcdeploy
go 1.25.7 go 1.25.7
require (
github.com/pelletier/go-toml/v2 v2.3.0
github.com/spf13/cobra v1.10.2
)
require ( require (
github.com/inconshreveable/mousetrap v1.1.0 // indirect github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/pelletier/go-toml/v2 v2.3.0 // indirect
github.com/spf13/cobra v1.10.2 // indirect
github.com/spf13/pflag v1.0.9 // indirect github.com/spf13/pflag v1.0.9 // indirect
) )

BIN
mcdeploy Executable file

Binary file not shown.

1
result
View File

@@ -1 +0,0 @@
/nix/store/c1fflsc9x99x0mrgg9msbpqdxspxwh7m-mcdeploy-0.1.0