We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5205e2c commit 9dbfbcbCopy full SHA for 9dbfbcb
.github/workflows/kind-maven.yaml
@@ -54,14 +54,11 @@ jobs:
54
sudo apt-get install -y sed
55
- name: combine to full connection string
56
run: |
57
- echo $envIpAddress
58
- echo $envIpPort
59
echo "connectionString = $(echo "${envIpAddress}:${envIpPort}?network=external" | sed -e 's/[]$.*[\^]/\\&/g' )" >> $GITHUB_ENV
60
- name: fix connection string
61
62
- chmod 755 fix.sh
63
- ./fix.sh $connectionString
64
- sed -i "s|127\.0\.0\.1|$connectionString|" src/main/java/org/couchbase/quickstart/configs/ConfigDb.java
+ chmod 755 deployment/fix.sh
+ ./deployment/fix.sh ${connectionString}
65
- name: Build with Maven
66
run: mvn -B package --file pom.xml
67
fix.sh deployment/fix.shfix.sh renamed to deployment/fix.sh
0 commit comments