mirror of
https://github.com/0x5eal/luau-unzip.git
synced 2025-04-04 06:30:53 +01:00
chore(actions): use correct qualification for outputs
This commit is contained in:
parent
1929a25fc4
commit
ff69d687b1
1 changed files with 4 additions and 4 deletions
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
|
@ -36,14 +36,14 @@ jobs:
|
|||
- name: Parse stylua semver range into version
|
||||
id: stylua
|
||||
run: |
|
||||
range="${{ steps.get_semver_range.value }}"
|
||||
range="${{ steps.get_semver_range.outputs.value }}"
|
||||
echo "version=$(gh api /repos/JohnnyMorganz/StyLua/tags --jq '.[] | .name' | xargs semver -r "$range" | tail -n 1)" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Install stylua
|
||||
uses: JohnnyMorganz/stylua-action@v4
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
version: ${{ steps.stylua.version }}
|
||||
version: ${{ steps.stylua.outputs.version }}
|
||||
args: --version
|
||||
|
||||
- name: Install dependencies
|
||||
|
@ -78,7 +78,7 @@ jobs:
|
|||
- name: Parse luau-lsp semver range into version
|
||||
id: luau-lsp
|
||||
run: |
|
||||
range="${{ steps.get_semver_range.value }}"
|
||||
range="${{ steps.get_semver_range.outputs.value }}"
|
||||
echo "version=$(gh api /repos/JohnnyMorganz/luau-lsp/tags --jq '.[] | .name' | xargs semver -r "$range" | tail -n 1)" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Install luau-lsp
|
||||
|
@ -88,7 +88,7 @@ jobs:
|
|||
set -euo pipefail
|
||||
|
||||
cd /tmp
|
||||
gh release download --repo JohnnyMorganz/luau-lsp "${{ steps.luau-lsp.version }}" --pattern luau-lsp-linux.zip
|
||||
gh release download --repo JohnnyMorganz/luau-lsp "${{ steps.luau-lsp.outputs.version }}" --pattern luau-lsp-linux.zip
|
||||
mkdir -p ~/.local/bin
|
||||
unzip luau-lsp-linux.zip -d ~/.local/bin
|
||||
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
|
||||
|
|
Loading…
Add table
Reference in a new issue