From 89422858325c0d58969cb3a57b3666d6750370fb Mon Sep 17 00:00:00 2001 From: jdx <216188+jdx@users.noreply.github.com> Date: Thu, 7 Dec 2023 17:44:02 -0600 Subject: [PATCH] Update README.md --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index c8d7b26..a24a791 100644 --- a/README.md +++ b/README.md @@ -27,3 +27,12 @@ jobs: # .tool-versions will be read from repo root - run: node ./my_app.js ``` + +Alternatively, rtx is easy to use in GitHub Actions even without this: + +```yaml +jobs: + build: + steps: + - run: curl https://rtx.pub/install.sh | sh && echo "$HOME/.local/share/rtx/bin/rtx" >> $GITHUB_PATH +```