v1.9.0 - Adding some encoding meta, fixed avf encoding EOF too soon. … #123
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 Macos Dylib | |
env: | |
project: PopH264 | |
on: | |
pull_request: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
- '*Test*' | |
jobs: | |
Build: | |
name: Macos Dylib Library | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: "recursive" | |
- name: Build Macos Static | |
uses: NewChromantics/[email protected] | |
id: Build | |
with: | |
BuildScheme: ${{ env.project }}_MacosDylib | |
Project: ${{ env.project }} | |
Destination: "platform=macOS" | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: ${{ steps.Build.outputs.UPLOAD_NAME }} | |
path: ${{ steps.Build.outputs.UPLOAD_DIR }} | |
if-no-files-found: error |