From 49045ddc8f9cbe3eb323b26f442c83733f665f67 Mon Sep 17 00:00:00 2001 From: Tom Morelly Date: Tue, 24 Oct 2023 13:31:07 +0200 Subject: [PATCH] docs(gitlab): Add Gitlab CI Examples --- site/docs/index.md | 8 +++ site/docs/integrations/gitlab.md | 117 +++++++++++++++++++++++++++++++ site/mkdocs.yml | 2 + 3 files changed, 127 insertions(+) create mode 100644 site/docs/integrations/gitlab.md diff --git a/site/docs/index.md b/site/docs/index.md index c1f3f5d..069819b 100644 --- a/site/docs/index.md +++ b/site/docs/index.md @@ -32,11 +32,19 @@ curl -L -o tfx.exe "https://github.com/straubt1/tfx/releases/download/${version} ``` **Go Installation** + From Go version 1.19, the following is supported. `@latest` can be `@$VERSION` ```sh go install github.com/straubt1/tfx@latest ``` +**Container** + +`tfx` is also packaged and published as a OCI Container Image in the Github Container Registry: +```sh +docker pull ghcr.io/straubt1/tfx:latest +``` +