Skip to content

Commit

Permalink
ci: quote run: lines to prevent globbing and word splitting
Browse files Browse the repository at this point in the history
  • Loading branch information
backwardspy committed Jun 14, 2024
1 parent 1aca311 commit 016762f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,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 @@ -36,4 +36,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"

0 comments on commit 016762f

Please sign in to comment.