| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332 |
- name: Push
- run-name: ${{ github.ref_name }} push run 🚀
- on:
- push:
- paths-ignore:
- - '**.md'
- branches:
- - master
- - 'release/**'
- tags:
- - '*'
- permissions:
- contents: write
- jobs:
- check-format:
- name: Format 🔍
- if: github.ref_name == 'master'
- uses: ./.github/workflows/check-format.yaml
- permissions:
- contents: read
- build-project:
- name: Build 🧱
- uses: ./.github/workflows/build-project.yaml
- secrets: inherit
- permissions:
- contents: read
- compatibility-validation:
- name: Validate Compatibility 🕵️
- if: github.ref_name == 'master'
- runs-on: ubuntu-22.04
- permissions:
- checks: write
- steps:
- - uses: actions/checkout@v4
- with:
- fetch-depth: 0
- - name: Check for Changed Files ✅
- uses: ./.github/actions/check-changes
- id: checks
- with:
- baseRef: ${{ github.event.before }}
- checkGlob: plugins/win-capture/data/*.json
- - name: Check for Invalid Compatibility Data 📉
- if: fromJSON(steps.checks.outputs.hasChangedFiles)
- uses: ./.github/actions/compatibility-validator
- with:
- repositorySecret: ${{ github.token }}
- services-validation:
- name: Validate Services 🕵️
- if: github.ref_name == 'master'
- runs-on: ubuntu-22.04
- permissions:
- checks: write
- steps:
- - uses: actions/checkout@v4
- with:
- fetch-depth: 0
- - name: Check for Changed Files ✅
- uses: ./.github/actions/check-changes
- id: checks
- with:
- baseRef: ${{ github.event.before }}
- checkGlob: plugins/rtmp-services/data/*.json
- - name: Check Services JSON Schema 📉
- if: fromJSON(steps.checks.outputs.hasChangedFiles)
- uses: ./.github/actions/services-validator
- with:
- repositorySecret: ${{ github.token }}
- runSchemaChecks: true
- runServiceChecks: false
- update-documentation:
- name: Update Documentation 📖
- if: github.repository_owner == 'obsproject' && (github.ref_name == 'master' || github.ref_type == 'tag')
- runs-on: ubuntu-22.04
- steps:
- - uses: actions/checkout@v4
- with:
- fetch-depth: 0
- - name: Check for Changed Files ✅
- if: github.ref_type != 'tag'
- uses: ./.github/actions/check-changes
- id: checks
- with:
- baseRef: ${{ github.event.before }}
- checkGlob: '!(cmake*)'
- - uses: ./.github/actions/generate-docs
- if: github.ref_type == 'tag' || fromJSON(steps.checks.outputs.hasChangedFiles)
- with:
- disableLinkExtensions: ${{ github.ref_type == 'tag' }}
- deploy-documentation:
- name: Deploy Documentation to Cloudflare ☁️
- if: github.repository_owner == 'obsproject' && github.ref_type == 'tag'
- runs-on: ubuntu-22.04
- needs: update-documentation
- defaults:
- run:
- shell: bash
- environment:
- name: cf-pages-deploy
- steps:
- - name: Get Commit Information 🆔
- id: setup
- run: |
- : Get Commit Hash 🆔
- echo "commitHash=${GITHUB_SHA:0:9}" >> $GITHUB_OUTPUT
- - uses: actions/download-artifact@v4
- with:
- name: OBS Studio Docs (No Extensions) ${{ steps.setup.outputs.commitHash }}
- path: docs
- - name: Set Up Redirects 🔄
- run: |
- : Set Up Redirects 🔄
- if [[ "${RUNNER_DEBUG}" ]]; then set -x; fi
- echo "/previous/27.2 https://obsproject.com/docs/27.2 302" >> docs/_redirects
- echo "/previous/:major.:minor https://:major-:minor.${{ vars.CF_PAGES_PROJECT }}.pages.dev 302" >> docs/_redirects
- - name: Publish to Live Page
- uses: cloudflare/wrangler-action@4c10c1822abba527d820b29e6333e7f5dac2cabd
- with:
- workingDirectory: docs
- apiToken: ${{ secrets.CF_API_TOKEN }}
- accountId: ${{ secrets.CF_ACCOUNT_ID }}
- command: pages publish . --project-name=${{ vars.CF_PAGES_PROJECT }} --commit-hash='${{ steps.setup.outputs.commitHash }}'
- create-appcast:
- name: Create Sparkle Appcast 🎙️
- if: github.repository_owner == 'obsproject' && github.ref_type == 'tag'
- runs-on: macos-14
- needs: build-project
- strategy:
- fail-fast: false
- matrix:
- target: [arm64, x86_64]
- defaults:
- run:
- shell: zsh --no-rcs --errexit --pipefail {0}
- steps:
- - uses: actions/checkout@v4
- with:
- submodules: recursive
- fetch-depth: 0
- ref: ${{ github.ref }}
- - name: Set Up Environment 🔧
- id: setup
- run: |
- : Set Up Environment 🔧
- if (( ${+RUNNER_DEBUG} )) setopt XTRACE
- local channel='stable'
- if [[ ${GITHUB_REF_NAME} == *(beta|rc)* ]] {
- channel='beta'
- }
- local -A arch_names=(x86_64 intel arm64 apple)
- print "cpuName=${arch_names[${{ matrix.target }}]}" >> $GITHUB_OUTPUT
- print "commitHash=${GITHUB_SHA:0:9}" >> $GITHUB_OUTPUT
- print "channel=${channel}" >> $GITHUB_OUTPUT
- - name: Download Artifact 📥
- uses: actions/download-artifact@v4
- with:
- name: obs-studio-macos-${{ matrix.target }}-${{ steps.setup.outputs.commitHash }}
- - name: Generate Appcast 🎙️
- id: generate-appcast
- uses: ./.github/actions/sparkle-appcast
- with:
- sparklePrivateKey: ${{ secrets.SPARKLE_PRIVATE_KEY }}
- baseImage: ${{ github.workspace }}/obs-studio-*-macos-${{ steps.setup.outputs.cpuName }}.dmg
- channel: ${{ steps.setup.outputs.channel }}
- count: 1
- urlPrefix: 'https://cdn-fastly.obsproject.com/downloads'
- customTitle: 'OBS Studio'
- customLink: 'https://obsproject.com/'
- - name: Upload Artifacts 📡
- uses: actions/upload-artifact@v4
- with:
- name: macos-sparkle-update-${{ matrix.target }}
- path: ${{ github.workspace }}/output
- merge-appcasts:
- runs-on: ubuntu-22.04
- needs: create-appcast
- steps:
- - name: Merge Appcasts
- uses: actions/upload-artifact/merge@v4
- with:
- name: macos-sparkle-update
- pattern: macos-sparkle-update-*
- delete-merged: true
- sign-windows-build:
- name: Windows Signing ✍️
- uses: obsproject/obs-studio/.github/workflows/sign-windows.yaml@b5b457d7b059397b70f6e3dd09b65e172ad734c3
- if: github.repository_owner == 'obsproject' && github.ref_type == 'tag'
- needs: build-project
- permissions:
- contents: 'read'
- id-token: 'write'
- attestations: 'write'
- secrets: inherit
- create-release:
- name: Create Release 🛫
- if: github.ref_type == 'tag'
- runs-on: ubuntu-22.04
- needs: [build-project, sign-windows-build]
- defaults:
- run:
- shell: bash
- steps:
- - name: Check Release Tag ☑️
- id: check
- run: |
- : Check Release Tag ☑️
- if [[ "${RUNNER_DEBUG}" ]]; then set -x; fi
- shopt -s extglob
- case "${GITHUB_REF_NAME}" in
- +([0-9]).+([0-9]).+([0-9]) )
- echo 'validTag=true' >> $GITHUB_OUTPUT
- echo 'prerelease=false' >> $GITHUB_OUTPUT
- echo "version=${GITHUB_REF_NAME}" >> $GITHUB_OUTPUT
- ;;
- +([0-9]).+([0-9]).+([0-9])-@(beta|rc)*([0-9]) )
- echo 'validTag=true' >> $GITHUB_OUTPUT
- echo 'prerelease=true' >> $GITHUB_OUTPUT
- echo "version=${GITHUB_REF_NAME}" >> $GITHUB_OUTPUT
- ;;
- *) echo 'validTag=false' >> $GITHUB_OUTPUT ;;
- esac
- - name: Download Build Artifacts 📥
- uses: actions/download-artifact@v4
- if: ${{ fromJSON(steps.check.outputs.validTag) }}
- - name: Rename Files 🏷️
- if: fromJSON(steps.check.outputs.validTag)
- run: |
- : Rename Files 🏷️
- if [[ "${RUNNER_DEBUG}" ]]; then set -x; fi
- root_dir="${PWD}"
- commit_hash="${GITHUB_SHA:0:9}"
- macos_arm64_artifact_name="obs-studio-macos-arm64-${commit_hash}"
- macos_arm64_dsym_artifact_name="obs-studio-macos-arm64-${commit_hash}-dSYMs"
- macos_intel_artifact_name="obs-studio-macos-x86_64-${commit_hash}"
- macos_intel_dsym_artifact_name="obs-studio-macos-x86_64-${commit_hash}-dSYMs"
- ubuntu_2204_x86_64_artifact_name="obs-studio-ubuntu-22.04-x86_64-${commit_hash}"
- ubuntu_2204_x86_64_debug_name="obs-studio-ubuntu-22.04-x86_64-${commit_hash}-dbgsym"
- ubuntu_2404_x86_64_artifact_name="obs-studio-ubuntu-24.04-x86_64-${commit_hash}"
- ubuntu_2404_x86_64_debug_name="obs-studio-ubuntu-24.04-x86_64-${commit_hash}-dbgsym"
- ubuntu_2404_sources_name="obs-studio-ubuntu-24.04-sources-${commit_hash}"
- windows_artifact_name="obs-studio-windows-x64-${{ steps.check.outputs.version }}-signed"
- windows_installer_name="obs-studio-windows-x64-${{ steps.check.outputs.version }}-installer"
- windows_debug_name="obs-studio-windows-x64-${{ steps.check.outputs.version }}-pdbs"
- echo '::group::Renaming Artifacts'
- mv -v "${macos_arm64_artifact_name}/"obs-studio-*-macos-apple.dmg \
- "${root_dir}"/OBS-Studio-${{ steps.check.outputs.version }}-macOS-Apple.dmg
- mv -v "${macos_arm64_dsym_artifact_name}/"obs-studio-*-macos-apple-dSYMs.tar.xz \
- "${root_dir}"/OBS-Studio-${{ steps.check.outputs.version }}-macOS-Apple-dSYMs.tar.xz
- mv -v "${macos_intel_artifact_name}/"obs-studio-*-macos-intel.dmg \
- "${root_dir}"/OBS-Studio-${{ steps.check.outputs.version }}-macOS-Intel.dmg
- mv -v "${macos_intel_dsym_artifact_name}/"obs-studio-*-macos-intel-dSYMs.tar.xz \
- "${root_dir}"/OBS-Studio-${{ steps.check.outputs.version }}-macOS-Intel-dSYMs.tar.xz
- mv -v "${ubuntu_2204_x86_64_artifact_name}/"obs-studio-*-x86_64-linux-gnu.deb \
- "${root_dir}"/OBS-Studio-${{ steps.check.outputs.version }}-Ubuntu-22.04-x86_64.deb
- mv -v "${ubuntu_2204_x86_64_debug_name}/"obs-studio-*-x86_64-linux-gnu-dbgsym.ddeb \
- "${root_dir}"/OBS-Studio-${{ steps.check.outputs.version }}-Ubuntu-22.04-x86_64-dbsym.ddeb
- mv -v "${ubuntu_2404_x86_64_artifact_name}/"obs-studio-*-x86_64-linux-gnu.deb \
- "${root_dir}"/OBS-Studio-${{ steps.check.outputs.version }}-Ubuntu-24.04-x86_64.deb
- mv -v "${ubuntu_2404_x86_64_debug_name}/"obs-studio-*-x86_64-linux-gnu-dbgsym.ddeb \
- "${root_dir}"/OBS-Studio-${{ steps.check.outputs.version }}-Ubuntu-24.04-x86_64-dbsym.ddeb
- mv -v "${ubuntu_2404_sources_name}/"obs-studio-*-sources.tar.gz \
- "${root_dir}"/OBS-Studio-${{ steps.check.outputs.version }}-Sources.tar.gz
- mv -v "${windows_installer_name}/"OBS-Studio-*.exe \
- "${root_dir}"/OBS-Studio-${{ steps.check.outputs.version }}-Windows-Installer.exe
- mv -v "${windows_artifact_name}/"OBS-Studio-*.zip \
- "${root_dir}"/OBS-Studio-${{ steps.check.outputs.version }}-Windows.zip
- mv -v "${windows_debug_name}/"OBS-Studio-*-pdbs.zip \
- "${root_dir}"/OBS-Studio-${{ steps.check.outputs.version }}-Windows-PDBs.zip
- echo '::endgroup::'
- - name: Generate Checksums 🪪
- if: fromJSON(steps.check.outputs.validTag)
- run: |
- : Generate Checksums 🪪
- if [[ "${RUNNER_DEBUG}" ]]; then set -x; fi
- shopt -s extglob
- echo "### Checksums" > ${{ github.workspace }}/CHECKSUMS.txt
- for file in ${{ github.workspace }}/@(*.deb|*.ddeb|*.dmg|*.tar.xz|*.tar.gz|*.exe|*.zip); do
- echo " ${file##*/}: $(sha256sum "${file}" | cut -d " " -f 1)" >> ${{ github.workspace }}/CHECKSUMS.txt
- done
- - name: Create Release 🛫
- if: fromJSON(steps.check.outputs.validTag)
- id: create_release
- uses: softprops/action-gh-release@9d7c94cfd0a1f3ed45544c887983e9fa900f0564
- with:
- draft: true
- prerelease: ${{ fromJSON(steps.check.outputs.prerelease) }}
- tag_name: ${{ steps.check.outputs.version }}
- name: OBS Studio ${{ steps.check.outputs.version }}
- body_path: ${{ github.workspace }}/CHECKSUMS.txt
- files: |
- ${{ github.workspace }}/OBS-Studio-${{ steps.check.outputs.version }}-macOS-*.dmg
- ${{ github.workspace }}/OBS-Studio-${{ steps.check.outputs.version }}-macOS-*-dSYMs.tar.xz
- ${{ github.workspace }}/OBS-Studio-${{ steps.check.outputs.version }}-Ubuntu-*.deb
- ${{ github.workspace }}/OBS-Studio-${{ steps.check.outputs.version }}-Ubuntu-*.ddeb
- ${{ github.workspace }}/OBS-Studio-${{ steps.check.outputs.version }}-Sources.tar.gz
- ${{ github.workspace }}/OBS-Studio-${{ steps.check.outputs.version }}-Windows.zip
- ${{ github.workspace }}/OBS-Studio-${{ steps.check.outputs.version }}-Windows-PDBs.zip
- ${{ github.workspace }}/OBS-Studio-${{ steps.check.outputs.version }}-Windows-Installer.exe
|