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 36de779 commit 951f505Copy full SHA for 951f505
.github/workflows/kind-maven.yaml
@@ -53,8 +53,11 @@ jobs:
53
echo "connectionString = $(echo "${envIpAddress}:${envIpPort}?network=external" | sed -e 's/[]$.*[\^]/\\&/g' )" | xargs >> $GITHUB_ENV
54
- name: fix connection string
55
run: |
56
- chmod 755 deployment/fix.sh
57
- ./deployment/fix.sh ${{ env.connectionString }}
+ sed -i'' -e "s|localhost|${{ env.connectionString }}|" src/main/java/org/couchbase/quickstart/configs/ConfigDb.java
+ sed -i'' -e "s|localhost|$connectionString|" src/main/resources/application.properties
58
+
59
+ cat src/main/java/org/couchbase/quickstart/configs/ConfigDb.java
60
+ cat src/main/resources/application.properties
61
- name: Build with Maven
62
run: mvn -B package --file pom.xml
63
deployment/fix.sh
0 commit comments