From 0ded24c2d5ceeb4dd6a08333036bb0de7320fde1 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Fri, 29 Oct 2021 13:51:40 -0700 Subject: [PATCH] Switch to releases for build artifacts --- README.md | 3 ++- docs/_pages/getting-started.md | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 90d62e1..358ccbf 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,8 @@ Luau is an embeddable language, but it also comes with two command-line tools by `luau-analyze` is a command-line type checker and linter; given a set of input files, it produces errors/warnings according to the file configuration, which can be customized by using `--!` comments in the files or [`.luaurc`](https://github.com/Roblox/luau/blob/master/rfcs/config-luaurc.md) files. For details please refer to [type checking]( https://luau-lang.org/typecheck) and [linting](https://luau-lang.org/lint) documentation. -The easiest way to get the command-line binaries is to use [artifact uploads](https://github.com/Roblox/luau/actions/workflows/release.yml) that are available for every commit to master. +You can download the binaries from [a recent release](https://github.com/Roblox/luau/releases). + # Building diff --git a/docs/_pages/getting-started.md b/docs/_pages/getting-started.md index 7dfbfec..2f6017d 100644 --- a/docs/_pages/getting-started.md +++ b/docs/_pages/getting-started.md @@ -4,7 +4,7 @@ title: Getting Started toc: true --- -To get started with Luau you need to use `luau` command line binary to run your code and `luau-analyze` to run static analysis (including type checking and linting). You can download these from [Artifacts on a recent build](https://github.com/Roblox/luau/actions/workflows/release.yml). +To get started with Luau you need to use `luau` command line binary to run your code and `luau-analyze` to run static analysis (including type checking and linting). You can download these from [a recent release](https://github.com/Roblox/luau/releases). ## Creating a script