mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 14:37:21 +00:00
46c1b7cfec
Authored by: bashonly
31 lines
651 B
YAML
31 lines
651 B
YAML
name: Release (master)
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- "yt_dlp/**.py"
|
|
- "!yt_dlp/version.py"
|
|
- "bundle/*.py"
|
|
- "pyproject.toml"
|
|
- "Makefile"
|
|
- ".github/workflows/build.yml"
|
|
concurrency:
|
|
group: release-master
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
release:
|
|
if: vars.BUILD_MASTER != ''
|
|
uses: ./.github/workflows/release.yml
|
|
with:
|
|
prerelease: true
|
|
source: master
|
|
permissions:
|
|
contents: write
|
|
packages: write # For package cache
|
|
actions: write # For cleaning up cache
|
|
id-token: write # mandatory for trusted publishing
|
|
secrets: inherit
|