Skip to content

refactor: remove pydub dependency and update audio processing method #781

refactor: remove pydub dependency and update audio processing method

refactor: remove pydub dependency and update audio processing method #781

Workflow file for this run

name: Release
on:
push:
branches:
- "main"
tags:
- "v*"
pull_request:
branches:
- "main"
workflow_dispatch:
concurrency:
group: release-${{ github.ref }}
cancel-in-progress: true
jobs:
check-version:
runs-on: ubuntu-latest
permissions:
contents: read
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Python environment
uses: ./.github/actions/setup-python
- name: Get Version
id: version
run: |
echo "VERSION=$(uv version --short)" >> $GITHUB_OUTPUT
echo "TAG=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
- name: Check Version
if: ${{ steps.version.outputs.VERSION != steps.version.outputs.TAG }}
run: exit 1
build:
runs-on: ${{ matrix.os }}
needs: check-version
permissions:
contents: read
packages: write
id-token: write
if: |-
${{
always() &&
(needs.check-version.result == 'success' || needs.check-version.result == 'skipped')
}}
strategy:
fail-fast: true
matrix:
include:
- os: ubuntu-latest
platform: linux/amd64
platform-artifact: linux-amd64
- os: ubuntu-24.04-arm
platform: linux/arm64
platform-artifact: linux-arm64
steps:
- name: Checkout
uses: actions/checkout@v6
with:
submodules: true
- name: Setup Docker
uses: docker/setup-buildx-action@v3
- name: Login to Github Container Registry
uses: docker/login-action@v4
if: ${{ github.event_name != 'pull_request' }}
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Generate Image Name and Scope
id: image
run: |
REPO=ghcr.io/${{ github.repository }}
echo "IMAGE=${REPO,,}" >> $GITHUB_OUTPUT
echo "SCOPE=${{ hashFiles('**/uv.lock') }}-${{ matrix.platform }}" >> $GITHUB_OUTPUT
PLATFORM="${{ matrix.platform }}"
echo "ARTIFACT=${PLATFORM/\//-}-digests" >> $GITHUB_OUTPUT
- name: Generate Labels
uses: docker/metadata-action@v5
id: metadata
with:
images: ${{ steps.image.outputs.IMAGE }}
- name: Build and Publish
uses: docker/build-push-action@v7
id: build
with:
context: .
platforms: ${{ matrix.platform }}
labels: ${{ steps.metadata.outputs.labels }}
cache-from: type=gha,scope=${{ steps.image.outputs.SCOPE }}
cache-to: type=gha,scope=${{ steps.image.outputs.SCOPE }},mode=max
outputs: type=image,name=${{ steps.image.outputs.IMAGE }},push-by-digest=true,name-canonical=true,push=${{ github.event_name != 'pull_request' }}
- name: Export digest
run: |
mkdir -p /tmp/digests
digest="${{ steps.build.outputs.digest }}"
touch "/tmp/digests/${digest#sha256:}"
- name: Upload digest
uses: actions/upload-artifact@v7
with:
name: ${{ steps.image.outputs.ARTIFACT }}
path: /tmp/digests/*
if-no-files-found: error
retention-days: 1
push:
runs-on: ubuntu-latest
needs: build
if: |-
${{
always() &&
github.event_name != 'pull_request' &&
needs.build.result == 'success'
}}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Download digests
uses: actions/download-artifact@v8
with:
path: /tmp/artifacts
pattern: "*-digests"
- name: Copy digests
run: |
mkdir -p /tmp/digests
cp /tmp/artifacts/*-digests/* /tmp/digests
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Github Container Registry
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Generate Image Name
id: image
run: |
REPO=ghcr.io/${{ github.repository }}
echo "IMAGE=${REPO,,}" >> $GITHUB_OUTPUT
- name: Generate Tags
uses: docker/metadata-action@v5
id: metadata
with:
images: |
ghcr.io/${{ github.repository }}
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=sha
- name: Create manifest list and push
working-directory: /tmp/digests
run: |
docker buildx imagetools create --dry-run $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
$(printf '${{ steps.image.outputs.IMAGE }}@sha256:%s ' *)
docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
$(printf '${{ steps.image.outputs.IMAGE }}@sha256:%s ' *)