File tree 2 files changed +3
-3
lines changed
.github/actions/deploy-ubuntu
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -229,7 +229,7 @@ runs:
229
229
- name : Publish release
230
230
shell : bash
231
231
if : " github.event_name == 'release'"
232
- run : ./gradlew clean publish ${{ inputs.tests == 'true' && 'check' || '-x check -x test' }} -Pdeploy.kotlin=false -Pdeploy.native=true -Pffmpeg .platform=${{ github.job }} -Pffmpeg.gpl=${{ matrix.gpl }} -Pdeploy.version=${{ github.event.release.tag_name }} --console=plain --info --configure-on-demand --parallel --build-cache --configuration-cache
232
+ run : ./gradlew clean publish ${{ inputs.tests == 'true' && 'check' || '-x check -x test' }} -Pdeploy.kotlin=false -Pdeploy.native=true -Pdeploy .platform=${{ github.job }} -Pffmpeg.gpl=${{ matrix.gpl }} -Pdeploy.version=${{ github.event.release.tag_name }} --console=plain --info --configure-on-demand --parallel --build-cache --configuration-cache
233
233
234
234
- name : Set outputs
235
235
id : vars
@@ -238,4 +238,4 @@ runs:
238
238
- name : Publish snapshot
239
239
shell : bash
240
240
if : " github.event_name != 'release'"
241
- run : ./gradlew clean publish ${{ inputs.tests == 'true' && 'check' || '-x check -x test' }} -Pdeploy.kotlin=false -Pdeploy.native=true -Pffmpeg .platform=${{ github.job }} -Pffmpeg.gpl=${{ matrix.gpl }} -Pdeploy.version=${{ steps.vars.outputs.sha_short }}-dev --console=plain --info --configure-on-demand --parallel --build-cache --configuration-cache
241
+ run : ./gradlew clean publish ${{ inputs.tests == 'true' && 'check' || '-x check -x test' }} -Pdeploy.kotlin=false -Pdeploy.native=true -Pdeploy .platform=${{ github.job }} -Pffmpeg.gpl=${{ matrix.gpl }} -Pdeploy.version=${{ steps.vars.outputs.sha_short }}-dev --console=plain --info --configure-on-demand --parallel --build-cache --configuration-cache
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ val deployNative = (findProperty("deploy.native") as String?)?.toBoolean() ?: tr
24
24
25
25
val withGPL: Boolean = findProperty(" ffmpeg.gpl" ).toString().toBoolean()
26
26
val platformExtension = " -gpl" .takeIf { withGPL }.orEmpty()
27
- val platformString = findProperty(" ffmpeg .platform" )?.toString()
27
+ val platformString = findProperty(" deploy .platform" )?.toString()
28
28
val platform = platformString?.let { Platform (it, platformExtension) } ? : NativePlatform .platform(platformExtension)
29
29
val compileDir = layout.projectDirectory.dir(" cppbuild/${platform} " )
30
30
You can’t perform that action at this time.
0 commit comments