[build] Add homebrew taps (#827)

https://github.com/yt-dlp/homebrew-taps
Closes: #754, #770
Authored by: nao20010128nao
This commit is contained in:
The Hatsune Daishi 2021-08-30 23:37:43 +09:00 committed by GitHub
parent 05664a2f7b
commit b8773e63f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 58 additions and 0 deletions

View file

@ -84,6 +84,19 @@ jobs:
rm -rf dist/*
python setup.py sdist bdist_wheel
twine upload dist/*
- name: Install SSH private key
if: ${{ secrets.BREW_TOKEN }}
uses: webfactory/ssh-agent@v0.5.3
with:
ssh-private-key: ${{ secrets.BREW_TOKEN }}
- name: Update Homebrew Formulae
# can't use secrets.GITHUB_TOKEN because it's outside yt-dlp repository
if: ${{ secrets.BREW_TOKEN }}
run: |
git clone git@github.com:yt-dlp/homebrew-taps taps/
python3 devscripts/update-formulae.py taps/Formula/yt-dlp.rb "${{ steps.bump_version.outputs.ytdlp_version }}"
git -C taps/ commit -am 'yt-dlp: ${{ steps.bump_version.outputs.ytdlp_version }}'
git -C taps/ push
build_windows:
runs-on: windows-latest