Changeset 18136 in josm


Ignore:
Timestamp:
2021-08-20T16:29:19+02:00 (3 years ago)
Author:
Don-vip
Message:

see #17083 - generate jpackaged application on Windows too

Location:
trunk
Files:
2 added
2 edited
8 moved

Legend:

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

    r18020 r18136  
    149149          ./native/macosx/macos-jpackage.sh ${{ needs.createrelease.outputs.josm_revision }}
    150150
    151       - name: Upload macOS app
    152         if: ${{ runner.os == 'macos' && always() }}
     151      - name: Build and package for Windows
     152        if: ${{ runner.os == 'windows' && always() }}
     153        run: |
     154          ./native/windows/win-jpackage.sh ${{ needs.createrelease.outputs.josm_revision }}
     155
     156      - name: Upload native app
     157        if: ${{ ( runner.os == 'macos' || runner.os == 'windows' ) && always() }}
    153158        id: upload-app
    154159        uses: actions/upload-release-asset@v1
  • trunk/native/macosx/macos-jpackage.sh

    r17971 r18136  
    5555fi
    5656
    57 echo "Building and signin app"
     57echo "Building and signing app"
    5858    jpackage $JPACKAGEOPTIONS -n "JOSM" --input dist --main-jar josm-custom.jar \
    5959    --main-class org.openstreetmap.josm.gui.MainApplication \
Note: See TracChangeset for help on using the changeset viewer.