We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cf04e6 commit da89b9fCopy full SHA for da89b9f
.github/workflows/ci.yml
@@ -11,13 +11,10 @@ jobs:
11
build:
12
runs-on: ubuntu-latest
13
steps:
14
- - name: Install dependencies
15
- run: sudo apt-get update && sudo apt-get install -y curl jq
16
-
17
- name: Get latest Luau version
18
id: get_latest
19
run: |
20
- LATEST_TAG=$(curl -s https://api.github.com/repositories/148821256/releases/latest | jq -r 'tag_name')
+ LATEST_TAG=$(curl -s https://api.github.com/repositories/148821256/releases/latest | jq -r '.tag_name')
21
echo "LATEST_TAG=$LATEST_TAG" >> $GITHUB_ENV
22
23
- name: Download Luau binary
0 commit comments