Skip to content

Commit

Permalink
Resolve DEV-441 "Fix installer version display problem"
Browse files Browse the repository at this point in the history
  • Loading branch information
maxim-glotov authored and evgeny-krylov committed Oct 11, 2018
1 parent 83070fa commit 2249ce6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .gitlab-ci.yml
Expand Up @@ -82,6 +82,11 @@ package-native:
stage: package
dependencies:
- build-jar
before_script:
- apk --no-cache add gettext
- export VERSION=$(echo ${CI_COMMIT_REF_NAME} | sed -e 's/v//')
- envsubst '${VERSION}' < install4j/multi.install4j > install4j/multi.install4j.new
- mv install4j/multi.install4j.new install4j/multi.install4j
script:
- mv build/libs/open-chain-*.jar build/libs/open-chain.jar
- |
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
@@ -1,6 +1,6 @@
FROM openjdk:8-jre

WORKDIR root/
WORKDIR /root

ADD build/libs/*.jar ./application.jar

Expand Down
2 changes: 1 addition & 1 deletion install4j/multi.install4j
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<install4j version="7.0.5" transformSequenceNumber="7">
<directoryPresets config="/" />
<application name="OPEN Chain" distributionSourceDir="" applicationId="2301-4490-4052-1739" mediaDir="/packages/artifacts" mediaFilePattern="${compiler:sys.shortName}-${compiler:sys.version}_${compiler:sys.platform}" compression="9" lzmaCompression="true" pack200Compression="true" excludeSignedFromPacking="true" commonExternalFiles="false" createMd5Sums="true" shrinkRuntime="true" shortName="open-chain" publisher="OPEN Platform" publisherWeb="https://openfuture.io" version="0.1.0" allPathsRelative="false" backupOnSave="false" autoSave="true" convertDotsToUnderscores="true" macSignature="????" macVolumeId="fdf5c5b057ad2f78" javaMinVersion="1.8" javaMaxVersion="" allowBetaVM="false" jdkMode="runtimeJre" jdkName="">
<application name="OPEN Chain" distributionSourceDir="" applicationId="2301-4490-4052-1739" mediaDir="/packages/artifacts" mediaFilePattern="${compiler:sys.shortName}-${compiler:sys.version}_${compiler:sys.platform}" compression="9" lzmaCompression="true" pack200Compression="true" excludeSignedFromPacking="true" commonExternalFiles="false" createMd5Sums="true" shrinkRuntime="true" shortName="open-chain" publisher="OPEN Platform" publisherWeb="https://openfuture.io" version="${VERSION}" allPathsRelative="false" backupOnSave="false" autoSave="true" convertDotsToUnderscores="true" macSignature="????" macVolumeId="fdf5c5b057ad2f78" javaMinVersion="1.8" javaMaxVersion="" allowBetaVM="false" jdkMode="runtimeJre" jdkName="">
<languages skipLanguageSelection="false" languageSelectionInPrincipalLanguage="false">
<principalLanguage id="en" customLocalizationFile="" />
<additionalLanguages />
Expand Down

0 comments on commit 2249ce6

Please sign in to comment.