Skip to content

Commit 0b8f2ed

Browse files
author
Damian Staszewski
committed
a fixing missing file
1 parent b4c05ab commit 0b8f2ed

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

deploying/deploy.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
REPO_VERSION=$(mvn -q -Dexec.executable="echo" -Dexec.args='${project.version}' --non-recursive org.codehaus.mojo:exec-maven-plugin:1.3.1:exec)
33
if [ ! -z $TRAVIS_TAG ] && [ $REPO_VERSION != '*-SNAPSHOT' ] && [ "$TRAVIS_BRANCH" != 'dev' ]; then
4-
mvn deploy -P sign,build-extras --settings ./settings.xml
4+
mvn deploy -P sign,build-extras --settings $TRAVIS_BUILD_DIR/deploying/settings.xml
55
elif [ $REPO_VERSION == '*-SNAPSHOT' ] && [ "$TRAVIS_BRANCH" == 'dev' ]; then
6-
mvn deploy -P sign,build-extras --settings ./settings.xml
6+
mvn deploy -P sign,build-extras --settings $TRAVIS_BUILD_DIR/deploying/settings.xml
77
fi

deploying/pre-deploy.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/usr/bin/env bash
2-
openssl aes-256-cbc -K $encrypted_b20503c2b955_key -iv $encrypted_b20503c2b955_iv -in hirezapi.asc.enc -out hirezapi.asc -d
3-
gpg --fast-import hirezapi.asc
2+
openssl aes-256-cbc -K $encrypted_b20503c2b955_key -iv $encrypted_b20503c2b955_iv -in $TRAVIS_BUILD_DIR/deploying/hirezapi.asc.enc -out $TRAVIS_BUILD_DIR/deploying/hirezapi.asc -d
3+
gpg --fast-import $TRAVIS_BUILD_DIR/deploying/hirezapi.asc

0 commit comments

Comments
 (0)