Changeset 18879 in josm


Ignore:
Timestamp:
2023-10-25T15:23:52+02:00 (14 months ago)
Author:
taylor.smock
Message:

See #23125: Add secret to GH action environment

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/.github/workflows/ant.yml

    r18848 r18879  
    141141          CERT_MACOS_PW: ${{ secrets.CERT_MACOS_PW }}
    142142          APPLE_ID_PW: ${{ secrets.APPLE_ID_PW }}
     143          APPLE_ID_TEAM: ${{ secrets.APPLE_ID_TEAM }}
    143144        run: |
    144145          if [ ! -f tools/openjfx-${JAVAFX_VERSION}_${{ runner.os }}-jmods.zip ]; then
  • trunk/native/macosx/macos-jpackage.sh

    r18878 r18879  
    2525mkdir app
    2626
    27 if [ -z "$CERT_MACOS_P12" ] || [ -z "$CERT_MACOS_PW" ] || [ -z "$APPLE_ID_PW" ]
     27if [ -z "$CERT_MACOS_P12" ] || [ -z "$CERT_MACOS_PW" ] || [ -z "$APPLE_ID_PW" ] || [ -z "$APPLE_ID_TEAM" ]
    2828then
    29     echo "CERT_MACOS_P12, CERT_MACOS_PW and APPLE_ID_PW are 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."
    3030    echo "A JOSM.app will be created but not signed nor notarized."
    3131    SIGNAPP=false
     
    5555
    5656echo "Building and signing app"
     57# We specifically need the options to not be quoted -- we _want_ the word splitting.
     58# shellcheck disable=SC2086
    5759jpackage $JPACKAGEOPTIONS -n "JOSM" --input dist --main-jar josm-custom.jar \
    5860    --main-class org.openstreetmap.josm.gui.MainApplication \
Note: See TracChangeset for help on using the changeset viewer.