]> jfr.im git - yt-dlp.git/blame - .github/workflows/release-nightly.yml
[build] Move bundle scripts into `bundle` submodule
[yt-dlp.git] / .github / workflows / release-nightly.yml
CommitLineData
29cb20bd
SS
1name: Release (nightly)
2on:
1d03633c 3 schedule:
4 - cron: '23 23 * * *'
29cb20bd
SS
5permissions:
6 contents: read
7
8jobs:
1d03633c 9 check_nightly:
29cb20bd
SS
10 if: vars.BUILD_NIGHTLY != ''
11 runs-on: ubuntu-latest
12 outputs:
1d03633c 13 commit: ${{ steps.check_for_new_commits.outputs.commit }}
29cb20bd 14 steps:
5438593a 15 - uses: actions/checkout@v4
1d03633c 16 with:
17 fetch-depth: 0
18 - name: Check for new commits
19 id: check_for_new_commits
29cb20bd 20 run: |
a1b77842 21 relevant_files=("yt_dlp/*.py" ':!yt_dlp/version.py' "setup.py" "bundle/*.py")
1d03633c 22 echo "commit=$(git log --format=%H -1 --since="24 hours ago" -- "${relevant_files[@]}")" | tee "$GITHUB_OUTPUT"
29cb20bd 23
1d03633c 24 release:
25 needs: [check_nightly]
26 if: ${{ needs.check_nightly.outputs.commit }}
27 uses: ./.github/workflows/release.yml
29cb20bd 28 with:
1d03633c 29 prerelease: true
30 source: nightly
29cb20bd
SS
31 permissions:
32 contents: write
1d03633c 33 packages: write
34 id-token: write # mandatory for trusted publishing
35 secrets: inherit