From e54dbe6814543195241f80ad1b5afad91b73b6ac Mon Sep 17 00:00:00 2001 From: jdx <216188+jdx@users.noreply.github.com> Date: Thu, 7 Dec 2023 17:45:30 -0600 Subject: [PATCH] Update README.md --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 74abcc600..535da22db 100644 --- a/README.md +++ b/README.md @@ -1485,7 +1485,16 @@ Using rtx in CI/CD is a great way to synchronize tool versions for dev/build. ### GitHub Actions -Use [`jdx/rtx-action`](https://github.com/jdx/rtx-action): +rtx is pretty easy to use without an action: + +```yaml +jobs: + build: + steps: + - run: curl https://rtx.pub/install.sh | sh && echo "$HOME/.local/share/rtx/bin/rtx" >> $GITHUB_PATH +``` + +Or you can use the custom action [`jdx/rtx-action`](https://github.com/jdx/rtx-action): ```yaml jobs: