🚀 Build and Publish jellyfin-ffmpeg #63
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: '🚀 Build and Publish jellyfin-ffmpeg' | |
on: | |
release: | |
types: | |
- released | |
jobs: | |
build_publish_debian: | |
uses: ./.github/workflows/_meta.yaml | |
with: | |
distro: 'debian' | |
codenames: '["buster", "bullseye", "bookworm"]' | |
architectures: '["amd64", "arm64", "armhf"]' | |
release: true | |
secrets: | |
deploy-host: ${{ secrets.REPO_HOST }} | |
deploy-user: ${{ secrets.REPO_USER }} | |
deploy-key: ${{ secrets.REPO_KEY }} | |
build_publish_ubuntu: | |
uses: ./.github/workflows/_meta.yaml | |
with: | |
distro: 'ubuntu' | |
codenames: '["focal", "jammy"]' | |
architectures: '["amd64", "arm64", "armhf"]' | |
release: true | |
secrets: | |
deploy-host: ${{ secrets.REPO_HOST }} | |
deploy-user: ${{ secrets.REPO_USER }} | |
deploy-key: ${{ secrets.REPO_KEY }} | |
build_publish_windows_portable: | |
uses: ./.github/workflows/_meta_portable.yaml | |
with: | |
os: 'windows' | |
architectures: '["win64"]' | |
release: true | |
secrets: | |
deploy-host: ${{ secrets.REPO_HOST }} | |
deploy-user: ${{ secrets.REPO_USER }} | |
deploy-key: ${{ secrets.REPO_KEY }} | |
build_publish_linux_portable: | |
uses: ./.github/workflows/_meta_portable.yaml | |
with: | |
os: 'linux' | |
architectures: '["amd64", "arm64"]' | |
release: true | |
secrets: | |
deploy-host: ${{ secrets.REPO_HOST }} | |
deploy-user: ${{ secrets.REPO_USER }} | |
deploy-key: ${{ secrets.REPO_KEY }} | |
build_publish_mac_portable: | |
uses: ./.github/workflows/_meta_mac_portable.yaml | |
with: | |
release: true | |
secrets: | |
deploy-host: ${{ secrets.REPO_HOST }} | |
deploy-user: ${{ secrets.REPO_USER }} | |
deploy-key: ${{ secrets.REPO_KEY }} | |
maintain_repository: | |
name: Maintain Repository | |
runs-on: ubuntu-latest | |
needs: | |
- build_publish_debian | |
- build_publish_ubuntu | |
strategy: | |
fail-fast: true | |
max-parallel: 1 | |
matrix: | |
arrays: [ | |
{distro: 'debian', codename: 'buster'}, | |
{distro: 'debian', codename: 'bullseye'}, | |
{distro: 'debian', codename: 'bookworm'}, | |
{distro: 'ubuntu', codename: 'focal'}, | |
{distro: 'ubuntu', codename: 'jammy'} | |
] | |
steps: | |
- name: Sync mirrors and update symlinks | |
uses: appleboy/ssh-action@029f5b4aeeeb58fdfe1410a5d17f967dacf36262 # v1.0.3 | |
with: | |
host: ${{ secrets.REPO_HOST }} | |
username: ${{ secrets.REPO_USER }} | |
key: ${{ secrets.REPO_KEY }} | |
script_stop: true | |
script: |- | |
set -o errexit | |
set -o xtrace | |
tag="${{ github.event.release.tag_name }}" | |
version="${tag#v}" | |
major_version="${version%%.*} | |
basename="jellyfin-ffmpeg*_${version}-${{ matrix.arrays.codename }}" | |
basedir="/srv/repository/main/ffmpeg/${{ matrix.arrays.distro }}/${major_version}.x/${version}" | |
find ${basedir} -type f -name "${basename}_*.deb" | while read file; do | |
sudo reprepro -b /srv/${{ matrix.arrays.distro }} --export=never --keepunreferencedfiles includedeb ${{ matrix.arrays.codename }} ${file} | |
done | |
sudo reprepro -b /srv/${{ matrix.arrays.distro }} deleteunreferenced | |
sudo reprepro -b /srv/${{ matrix.arrays.distro }} export | |
sudo rm -f /srv/repository/main/ffmpeg/${{ matrix.arrays.distro }}/latest-${major_version}.x | |
sudo ln -s ${basedir} /srv/repository/main/ffmpeg/${{ matrix.arrays.distro }}/latest-${major_version}.x | |
maintain_repository_portable: | |
name: Maintain Repository (Portable) | |
runs-on: ubuntu-latest | |
needs: | |
- build_publish_windows_portable | |
strategy: | |
fail-fast: true | |
max-parallel: 1 | |
matrix: | |
arrays: [ | |
{distro: 'windows', codename: 'windows'}, | |
] | |
steps: | |
- name: Update symlinks | |
uses: appleboy/ssh-action@029f5b4aeeeb58fdfe1410a5d17f967dacf36262 # v1.0.3 | |
with: | |
host: ${{ secrets.REPO_HOST }} | |
username: ${{ secrets.REPO_USER }} | |
key: ${{ secrets.REPO_KEY }} | |
script_stop: true | |
script: |- | |
set -o errexit | |
set -o xtrace | |
tag="${{ github.event.release.tag_name }}" | |
version="${tag#v}" | |
major_version="${version%%.*} | |
basedir="/srv/repository/main/ffmpeg/${{ matrix.arrays.distro }}/${major_version}.x/${version}" | |
sudo rm -f /srv/repository/main/ffmpeg/${{ matrix.arrays.distro }}/latest-${major_version}.x | |
sudo ln -s ${basedir} /srv/repository/main/ffmpeg/${{ matrix.arrays.distro }}/latest-${major_version}.x |