Skip to content

Commit 02b9692

Browse files
committed
Just pre-defining platform is enough
1 parent d1e6d82 commit 02b9692

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100
p12-file-base64: ${{ secrets.CERTIFICATES_P12 }}
101101
p12-password: ${{ secrets.CERTIFICATES_P12_PASSWORD }}
102102
- name: Build Release
103-
run: ant -noinput -buildfile build/build.xml ${{ matrix.os_prefix }}-dist -Dversion="${{ needs.version.outputs.version }}" -Dplatform.override=${{ matrix.os_prefix }}
103+
run: ant -noinput -buildfile build/build.xml ${{ matrix.os_prefix }}-dist -Dversion="${{ needs.version.outputs.version }}" -Dplatform=${{ matrix.os_prefix }}
104104
env:
105105
PROCESSING_APP_PASSWORD: ${{ secrets.PROCESSING_APP_PASSWORD }}
106106
PROCESSING_APPLE_ID: ${{ secrets.PROCESSING_APPLE_ID }}

build/build.xml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,6 @@
99
</classpath>
1010
</taskdef>
1111

12-
<property name="platform.override" value="" description="Override OS (windows/linux/mac)" />
13-
14-
<!-- First check if we have an override -->
15-
<condition property="platform" value="${platform.override}">
16-
<isset property="platform.override"/>
17-
</condition>
18-
1912
<!-- Only do OS detection if platform isn't already set by override -->
2013
<condition property="platform" value="macos">
2114
<and>

0 commit comments

Comments
 (0)