Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/release-combined.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ on:
inputs:
version:
description: 'Release tag name'
default: '0.41.0-av4'
default: '0.41.0-av5'
pull_request:
branches:
- main
- avfoundation-ao-tvos
push:
branches:
- avfoundation-ao-tvos
Expand All @@ -25,7 +29,7 @@ jobs:
run: |
VERSION="$INPUT_VERSION"
if [ -z "$VERSION" ]; then
VERSION="0.41.0-av4"
VERSION="0.41.0-av5"
fi
echo "RELEASE_VERSION=$VERSION" >> "$GITHUB_ENV"

Expand All @@ -46,6 +50,7 @@ jobs:
run: ./Sources/BuildScripts/create-combined-framework.sh

- name: Upload binary to GitHub Release
if: github.event_name != 'pull_request'
uses: softprops/action-gh-release@v2
with:
name: ${{ env.RELEASE_VERSION }}
Expand Down
4 changes: 2 additions & 2 deletions MPVKit.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'MPVKit'
s.version = '0.41.0-av4'
s.version = '0.41.0-av5'
s.summary = 'MPVKit with AVFoundation video and audio output for iOS/tvOS'
s.description = <<-DESC
MPVKit fork with AVFoundation video output (vo_avfoundation) support.
Expand All @@ -17,7 +17,7 @@ Pod::Spec.new do |s|
s.homepage = 'https://github.com/streamyfin/MPVKit'
s.license = { :type => 'GPL-3.0', :text => 'GPL-3.0. See https://www.gnu.org/licenses/gpl-3.0.html' }
s.author = { 'streamyfin' => 'https://github.com/streamyfin' }
s.source = { :http => 'https://github.com/streamyfin/MPVKit/releases/download/0.41.0-av4/MPVKit.xcframework.zip' }
s.source = { :http => 'https://github.com/streamyfin/MPVKit/releases/download/0.41.0-av5/MPVKit.xcframework.zip' }

s.ios.deployment_target = '14.0'
s.tvos.deployment_target = '14.0'
Expand Down
Loading
Loading