Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
HOMEBREW_GITHUB_PACKAGES_TOKEN: ${{ github.token }}
HOMEBREW_GITHUB_PACKAGES_USER: ${{ github.actor }}
PULL_REQUEST: ${{ github.event.pull_request.number }}
run: brew pr-pull --debug --tap=$GITHUB_REPOSITORY $PULL_REQUEST
run: brew pr-pull --debug --tap="$GITHUB_REPOSITORY" "$PULL_REQUEST"

- name: Push commits
uses: Homebrew/actions/git-try-push@master
Expand All @@ -38,4 +38,4 @@ jobs:
if: github.event.pull_request.head.repo.fork == false
env:
BRANCH: ${{ github.event.pull_request.head.ref }}
run: git push --delete origin $BRANCH
run: git push --delete origin "$BRANCH"
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@ jobs:
env:
GH_TOKEN: ${{ secrets.PAT }}
steps:
- run: gh pr edit ${{ github.event.number }} --add-label="pr-pull" --repo $GITHUB_REPOSITORY
- run: gh pr edit ${{ github.event.number }} --add-label="pr-pull" --repo "$GITHUB_REPOSITORY"
4 changes: 2 additions & 2 deletions next-ls.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
class NextLs < Formula
desc "Language server for Elixir that just works"
homepage "https://www.elixir-tools.dev/next-ls"
url "https://github.com/elixir-tools/next-ls/archive/refs/tags/v0.22.8.tar.gz"
sha256 "6ada6792ca00c1eed7f9e5c0d4fc1f4df621c1b739db6c29e3f51975fa305464"
url "https://github.com/elixir-tools/next-ls/archive/refs/tags/v0.23.0.tar.gz"
sha256 "ef08aaa1e57d66f652611e5c0de21d7b411c83079df729b6a4d0c5269404d5e8"
license "MIT"

bottle do
Expand Down