diff --git a/README.md b/README.md index 288e59a..a13819b 100644 --- a/README.md +++ b/README.md @@ -281,6 +281,9 @@ just # logs tail -F ${HOME}/.local/state/hck/log/hckctl-*.log + +# publish +just publish 0.12.0 ``` ## Roadmap @@ -311,11 +314,17 @@ E1020 19:55:12.436966 149063 portforward.go:381] error copying from remote stre >>> remove TryHackMe demo from readme -* test all catalog -* discord + social links -* update cloud pkg +* fix cloud * update platform prs * verify network connectivity between boxes/tasks i.e. kube.svc +* add task cloud (kube provider) +* use public PKG +* lab inputs +* convert TODOs left in GitHub issues +* add GitHub org labels: feature/bug/question + +* test all catalog +* discord + social links (?) * verify binaries * test on mac-m1 and win (docker images) * review all command cli example/description @@ -331,9 +340,7 @@ composeRef e.g. https://github.com/digininja/DVWA/blob/master/compose.yml TODO * priority - - add task cloud - debug `htb-postman` - - lab inputs - add flow example - verify cloud no-shell support - play htb: linux/win @@ -350,8 +357,6 @@ TODO - add readme lab video/gif https://asciinema.org - delete old branches (video) - update internal cli diagram - - convert TODOs left in GitHub issues - - add GitHub org labels: feature/bug/question - review/delete GitHub project - add go reference badge - public `preview/kali-core` image diff --git a/justfile b/justfile index 97892f3..fe87da6 100644 --- a/justfile +++ b/justfile @@ -8,7 +8,7 @@ default: (build BUILD_PATH) install: go mod tidy - go mod vendor + #go mod vendor format: go fmt {{GO_FILES}} @@ -26,3 +26,6 @@ build output $VERSION_COMMIT="$(git rev-parse HEAD)" $VERSION_TIMESTAMP="$(date -X github.com/hckops/hckctl/internal/command/version.commit={{VERSION_COMMIT}} \ -X github.com/hckops/hckctl/internal/command/version.timestamp={{VERSION_TIMESTAMP}}" \ -o {{output}}/{{BIN_NAME}} internal/main.go + +publish version: + GOPROXY=proxy.golang.org go list -m github.com/hckops/hckctl@v{{version}} \ No newline at end of file