[Installation] Include default
dependencies with pip (#37)
#51
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build wiki | |
on: | |
push: | |
branches: | |
master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ssh-key: ${{ secrets.TOKEN }} | |
- name: Push to wiki | |
env: | |
TOKEN: ${{ secrets.TOKEN }} | |
if: env.TOKEN != '' | |
run: | | |
git remote add upstream [email protected]:yt-dlp/yt-dlp.wiki | |
git fetch upstream | |
git push --force upstream master |