mirror of
https://github.com/0x5eal/luau-unzip.git
synced 2025-04-04 06:30:53 +01:00
chore(actions): pass gh token when needed and add bash flags
This commit is contained in:
parent
ff69d687b1
commit
4831384c16
1 changed files with 10 additions and 0 deletions
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
|
@ -36,8 +36,13 @@ jobs:
|
|||
- name: Parse stylua semver range into version
|
||||
id: stylua
|
||||
run: |
|
||||
#!/bin/bash
|
||||
set -euo pipefail
|
||||
|
||||
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
|
||||
env:
|
||||
GH_TOKEN: ${{ github.token }}
|
||||
|
||||
- name: Install stylua
|
||||
uses: JohnnyMorganz/stylua-action@v4
|
||||
|
@ -78,8 +83,13 @@ jobs:
|
|||
- name: Parse luau-lsp semver range into version
|
||||
id: luau-lsp
|
||||
run: |
|
||||
#!/bin/bash
|
||||
set -euo pipefail
|
||||
|
||||
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
|
||||
env:
|
||||
GH_TOKEN: ${{ github.token }}
|
||||
|
||||
- name: Install luau-lsp
|
||||
shell: bash
|
||||
|
|
Loading…
Add table
Reference in a new issue