Skip to content

Bump yt-dlp from 2023.7.6 to 2023.9.24 #370

Bump yt-dlp from 2023.7.6 to 2023.9.24

Bump yt-dlp from 2023.7.6 to 2023.9.24 #370

Workflow file for this run

name: Python application
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version-file: '.python-version'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements.dev.txt
- name: Lint and test
run: make test
deploy:
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
concurrency: deploy
runs-on: ubuntu-latest
needs:
- test
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Deploy
uses: dokku/github-action@v1.4.0
with:
git_remote_url: 'ssh://dokku@platform.natan.la/yaas'
ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }}
git_push_flags: --force