mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2026-05-19 13:52:36 +00:00
* Bump actions/cache v5.0.3 => v5.0.5 * Bump actions/setup-node v6.3.0 => v6.4.0 * Bump actions/upload-artifact v7.0.0 => v7.0.1 * Bump denoland/setup-deno v2.0.3 => v2.0.4 * Bump github/codeql-action v4.33.0 => v4.35.2 * Bump pypa/gh-action-pypi-publish v1.13.0 => v1.14.0 * Bump rhysd/actionlint 1.7.11 => 1.7.12 * Bump zizmorcore/zizmor-action v0.5.2 => v0.5.3 Authored by: bashonly
53 lines
1.4 KiB
YAML
53 lines
1.4 KiB
YAML
name: Release (master)
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- "yt_dlp/**.py"
|
|
- "!yt_dlp/version.py"
|
|
- "bundle/**"
|
|
- "pyproject.toml"
|
|
- "Makefile"
|
|
- ".github/workflows/build.yml"
|
|
- ".github/workflows/release.yml"
|
|
- ".github/workflows/release-master.yml"
|
|
concurrency:
|
|
group: release-master
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
release:
|
|
name: Publish GitHub release
|
|
if: vars.BUILD_MASTER
|
|
permissions:
|
|
contents: write # May be needed to publish release
|
|
id-token: write # Needed for trusted publishing
|
|
uses: ./.github/workflows/release.yml
|
|
with:
|
|
prerelease: true
|
|
source: ${{ (github.repository != 'yt-dlp/yt-dlp' && vars.MASTER_ARCHIVE_REPO) || 'master' }}
|
|
target: 'master'
|
|
secrets:
|
|
ARCHIVE_REPO_TOKEN: ${{ secrets.ARCHIVE_REPO_TOKEN }}
|
|
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
|
|
|
|
publish_pypi:
|
|
name: Publish to PyPI
|
|
needs: [release]
|
|
if: vars.MASTER_PYPI_PROJECT
|
|
permissions:
|
|
id-token: write # Needed for trusted publishing
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Download artifacts
|
|
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
|
|
with:
|
|
path: dist
|
|
name: build-pypi
|
|
- name: Publish to PyPI
|
|
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # v1.14.0
|
|
with:
|
|
verbose: true
|