mislav / bump-homebrew-formula-action

Automatically bump Homebrew formula after a release
The Unlicense
166 stars 32 forks source link

Help: Invalid reference when running action #171

Open ABDreos opened 2 weeks ago

ABDreos commented 2 weeks ago

When running the action I have created, defined as following:

      - uses: mislav/bump-homebrew-formula-action@v3
        with:
          formula-name: bragir
          formula-path: Formula/bragir.rb
          homebrew-tap: ArjanCodes/homebrew-core
          base-branch: main
          download-url: https://github.com/ArjanCodes/bragir/releases/download/${{ steps.versioning.outputs.tag-name }}/bragir-${{steps.versioning.outputs.version}}.tar.gz
          commit-message: bragir ${{steps.versioning.outputs.version}}
        env:
          COMMITTER_TOKEN: ${{ secrets.COMMITTER_TOKEN }}

I get back: Error: invalid ref: refs/heads/update-homebrew-bump-pipeline

update-homebrew-bump-pipeline is the current branch I am working on.

Any suggestions?