Changeset 18136 in josm
- Timestamp:
- 2021-08-20T16:29:19+02:00 (3 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 2 edited
- 8 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/ant.yml
r18020 r18136 149 149 ./native/macosx/macos-jpackage.sh ${{ needs.createrelease.outputs.josm_revision }} 150 150 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() }} 153 158 id: upload-app 154 159 uses: actions/upload-release-asset@v1 -
trunk/native/macosx/macos-jpackage.sh
r17971 r18136 55 55 fi 56 56 57 echo "Building and signin app"57 echo "Building and signing app" 58 58 jpackage $JPACKAGEOPTIONS -n "JOSM" --input dist --main-jar josm-custom.jar \ 59 59 --main-class org.openstreetmap.josm.gui.MainApplication \
Note:
See TracChangeset
for help on using the changeset viewer.