Changeset 18879 in josm
- Timestamp:
- 2023-10-25T15:23:52+02:00 (14 months ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/ant.yml
r18848 r18879 141 141 CERT_MACOS_PW: ${{ secrets.CERT_MACOS_PW }} 142 142 APPLE_ID_PW: ${{ secrets.APPLE_ID_PW }} 143 APPLE_ID_TEAM: ${{ secrets.APPLE_ID_TEAM }} 143 144 run: | 144 145 if [ ! -f tools/openjfx-${JAVAFX_VERSION}_${{ runner.os }}-jmods.zip ]; then -
trunk/native/macosx/macos-jpackage.sh
r18878 r18879 25 25 mkdir app 26 26 27 if [ -z "$CERT_MACOS_P12" ] || [ -z "$CERT_MACOS_PW" ] || [ -z "$APPLE_ID_PW" ] 27 if [ -z "$CERT_MACOS_P12" ] || [ -z "$CERT_MACOS_PW" ] || [ -z "$APPLE_ID_PW" ] || [ -z "$APPLE_ID_TEAM" ] 28 28 then 29 echo "CERT_MACOS_P12, CERT_MACOS_PW and APPLE_ID_PWare not set in the environment."29 echo "CERT_MACOS_P12, CERT_MACOS_PW, APPLE_ID_PW, or APPLE_ID_TEAM are not set in the environment." 30 30 echo "A JOSM.app will be created but not signed nor notarized." 31 31 SIGNAPP=false … … 55 55 56 56 echo "Building and signing app" 57 # We specifically need the options to not be quoted -- we _want_ the word splitting. 58 # shellcheck disable=SC2086 57 59 jpackage $JPACKAGEOPTIONS -n "JOSM" --input dist --main-jar josm-custom.jar \ 58 60 --main-class org.openstreetmap.josm.gui.MainApplication \
Note:
See TracChangeset
for help on using the changeset viewer.