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 0a13712 commit f27f16dCopy full SHA for f27f16d
.github/workflows/kind-maven.yaml
@@ -55,8 +55,11 @@ jobs:
55
echo $envIpPort
56
echo "connectionString = ${envIpAddress}:${envIpPort}?network=external" >> $GITHUB_ENV
57
- name: fix connection string
58
- run: |
59
- sed -i "s|127.0.0.1|$connectionString|" src/main/java/org/couchbase/quickstart/configs/ConfigDb.java
+ uses: jacobtomlinson/gha-find-replace@master
+ with:
60
+ find: "127.0.0.1"
61
+ replace: $connectionString
62
+ include: "src/main/java/org/couchbase/quickstart/configs/ConfigDb.java"
63
- name: validate file fix
64
run: cat src/main/java/org/couchbase/quickstart/configs/ConfigDb.java
65
- name: Build with Maven
0 commit comments