chore(release): 0.13.0 #10
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
# TODO: attach built packages to the release page | |
name: Release Packages | |
on: | |
push: | |
tags: | |
- v* | |
jobs: | |
package-for-development: | |
uses: ./.github/workflows/package.yml | |
with: | |
ref: ${{ github.event.ref }} | |
packageName: package-for-development | |
linuxBuildArgs: '--desktop gpu --opencv cmake' | |
androidBuildArgs: '--android fat --android_ndk_api_level 21' | |
macosBuildArgs: '--desktop cpu --opencv cmake --macos_universal' | |
iosBuildArgs: '--ios arm64' | |
windowsBuildArgs: '--desktop cpu --opencv cmake' | |
secrets: inherit | |
package-for-production: | |
uses: ./.github/workflows/package.yml | |
with: | |
ref: ${{ github.event.ref }} | |
packageName: package-for-production | |
linuxBuildArgs: '--linkopt="-s" --desktop gpu --opencv cmake' | |
androidBuildArgs: '--linkopt="-s" --android fat --android_ndk_api_level 21' | |
macosBuildArgs: '--linkopt="-s" --desktop cpu --opencv cmake --macos_universal' | |
iosBuildArgs: '--linkopt="-s" --ios arm64' | |
windowsBuildArgs: '--desktop cpu --opencv cmake' | |
secrets: inherit |