Skip to content

Merge pull request #9 from birros/feat/lower-min-versions #74

Merge pull request #9 from birros/feat/lower-min-versions

Merge pull request #9 from birros/feat/lower-min-versions #74

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
ci:
name: ci
runs-on: macos-12
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install requirements
run: brew install go-task meson ninja
- name: Print tool versions
run: task tool-versions
- name: Determine version
id: version
run: |
case "${GITHUB_REF}" in
refs/tags/*)
VERSION=${GITHUB_REF#refs/tags/}
;;
*)
VERSION=develop
;;
esac
echo "version=${VERSION}" >> $GITHUB_OUTPUT
echo ${VERSION}
- name: Build
# macOS runners have unknown resource limits (timeout or number of open
# files…) that prevent the execution of a single Taskfile task that
# manages all builds. Concurrent tasks must be limited.
run: |
VERSION=${{ steps.version.outputs.version }} task build-macos-audio
VERSION=${{ steps.version.outputs.version }} task build-macos-video
VERSION=${{ steps.version.outputs.version }} task build-ios-audio
VERSION=${{ steps.version.outputs.version }} task build-ios-video
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
if-no-files-found: error
path: |
build/tool-versions.lock
build/**/*.tar.gz
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
fail_on_unmatched_files: true
files: |
build/tool-versions.lock
build/**/*.tar.gz