mirror of
https://github.com/dolthub/dolt.git
synced 2025-12-21 11:59:41 -06:00
Merge pull request #9694 from chenrui333/remove-cd-bump-homebrew
chore(workflows): remove `cd-bump-homebrew`
This commit is contained in:
46
.github/workflows/cd-bump-homebrew.yaml
vendored
46
.github/workflows/cd-bump-homebrew.yaml
vendored
@@ -1,46 +0,0 @@
|
||||
name: Bump Dolt on Homebrew
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
version:
|
||||
description: 'SemVer format release tag, i.e. 0.24.5'
|
||||
required: true
|
||||
repository_dispatch:
|
||||
types: [ bump-homebrew ]
|
||||
|
||||
jobs:
|
||||
homebrew-bump:
|
||||
name: Bump Dolt Homebrew formula
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- name: Create Homebrew PR
|
||||
uses: mislav/bump-homebrew-formula-action@v2.1
|
||||
if: ${{ github.event_name == 'repository_dispatch' }}
|
||||
with:
|
||||
formula-name: dolt
|
||||
homebrew-tap: Homebrew/homebrew-core
|
||||
base-branch: master
|
||||
tag-name: ${{format('refs/tags/v{0}', github.event.client_payload.version)}}
|
||||
download-url: ${{format('https://github.com/dolthub/dolt/archive/v{0}.tar.gz', github.event.client_payload.version)}}
|
||||
commit-message: |
|
||||
${{format('dolt {0}', github.event.client_payload.version)}}
|
||||
|
||||
Created by https://github.com/mislav/bump-homebrew-formula-action
|
||||
env:
|
||||
COMMITTER_TOKEN: ${{secrets.REPO_ACCESS_TOKEN}}
|
||||
- name: Create Homebrew PR
|
||||
uses: mislav/bump-homebrew-formula-action@v2.1
|
||||
if: ${{ github.event_name == 'workflow_dispatch' }}
|
||||
with:
|
||||
formula-name: dolt
|
||||
homebrew-tap: Homebrew/homebrew-core
|
||||
base-branch: master
|
||||
tag-name: ${{format('refs/tags/v{0}', github.event.inputs.version)}}
|
||||
download-url: ${{format('https://github.com/dolthub/dolt/archive/v{0}.tar.gz', github.event.inputs.version)}}
|
||||
commit-message: |
|
||||
${{format('dolt {0}', github.event.inputs.version)}}
|
||||
|
||||
Created by https://github.com/mislav/bump-homebrew-formula-action
|
||||
env:
|
||||
COMMITTER_TOKEN: ${{secrets.REPO_ACCESS_TOKEN}}
|
||||
Reference in New Issue
Block a user