mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 00:20:47 +00:00 
			
		
		
		
	- Fix `AUTHORS` file by doing an unshallow checkout - Update triggers for nightly/master release Authored by: bashonly
		
			
				
	
	
		
			30 lines
		
	
	
		
			584 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			584 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
 | 
						|
      id-token: write  # mandatory for trusted publishing
 | 
						|
    secrets: inherit
 |