ci: Automate the bumping of the starship Brew formula (#143)

This commit is contained in:
Matan Kushner
2019-08-12 21:29:14 -04:00
committed by GitHub
parent 160a79fa06
commit 5a2bd8162d
3 changed files with 21 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
jobs:
- job: ${{ parameters.name }}
displayName: ${{ parameters.displayName }}
pool:
vmImage: macOS-10.13
steps:
- script: |
GIT_TAG="$(Build.SourceBranch)"
git config --global user.name "matchai"
git config --global user.email "hello@matchai.me"
git config --global config.helper store
echo "https://matchai:${HOMEBREW_GITHUB_API_TOKEN}@github.com" >> ~/.git-credentials
brew bump-formula-pr starship --url=https://github.com/starship/starship/archive/${GIT_TAG}.tar.gz --message="Automated release pull request using continuous integration." --no-browse -v starship
displayName: Bump the Homebrew formula