Skip to content

Commit

Permalink
Merge pull request #426 from chenrui333/patch-1
Browse files Browse the repository at this point in the history
workflows(homebrew): fix url format issue
  • Loading branch information
michaelquigley authored Oct 25, 2023
2 parents 64b9c68 + 7167251 commit be98634
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/homebrew.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
id: extract-version
run: |
printf "::set-output name=%s::%s\n" tag-name "${GITHUB_REF#refs/tags/}"
- uses: mislav/bump-homebrew-formula-action@v2
- uses: mislav/bump-homebrew-formula-action@v3.1
if: "!contains(github.ref, '-')"
with:
formula-name: zrok
download-url: https://github.com/openziti/zrok/archive/${{ steps.extract-version.outputs.tag-name }}.tar.gz
download-url: https://github.com/openziti/zrok/archive/refs/tags/${{ steps.extract-version.outputs.tag-name }}.tar.gz
env:
COMMITTER_TOKEN: ${{ secrets.BREW_COMMITTER_TOKEN }}

0 comments on commit be98634

Please sign in to comment.