csantanapr closed pull request #2: Fix repo and image name.
URL: https://github.com/apache/incubator-openwhisk-runtime-ballerina/pull/2
This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:
As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):
diff --git a/.travis.yml b/.travis.yml
index 1c77591..6acbcb1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -29,7 +29,7 @@ deploy:
on:
tags: true
all_branches: true
- repo: apache/incubator-openwhisk-runtime-java
+ repo: apache/incubator-openwhisk-runtime-ballerina
- provider: script
script: "./tools/travis/publish.sh openwhisk latest"
on:
diff --git a/README.md b/README.md
index cd539b5..d378adb 100644
--- a/README.md
+++ b/README.md
@@ -69,7 +69,7 @@ Use the OpenWhisk [`wsk`
CLI](https://github.com/apache/incubator-openwhisk/blob
to create your Ballerina action.
```bash
-wsk action create hello hello.balx --docker openwhisk/balaction
+wsk action create hello hello.balx --docker openwhisk/action-ballerina-v0.975
```
Now you're ready to invoke the action:
diff --git a/ballerina/build.gradle b/ballerina/build.gradle
index b1e96aa..33b36ed 100644
--- a/ballerina/build.gradle
+++ b/ballerina/build.gradle
@@ -15,5 +15,5 @@
* limitations under the License.
*/
-ext.dockerImageName = 'balaction'
+ext.dockerImageName = 'action-ballerina-v0.975'
apply from: '../gradle/docker.gradle'
diff --git
a/tests/src/test/scala/actionContainers/BallerinaActionContainerTests.scala
b/tests/src/test/scala/actionContainers/BallerinaActionContainerTests.scala
index d5ad43b..9a3e391 100644
--- a/tests/src/test/scala/actionContainers/BallerinaActionContainerTests.scala
+++ b/tests/src/test/scala/actionContainers/BallerinaActionContainerTests.scala
@@ -34,7 +34,7 @@ import spray.json._
@RunWith(classOf[JUnitRunner])
class BallerinaActionContainerTests extends BasicActionRunnerTests with
WskActorSystem {
- lazy val ballerinaContainerImageName = "balaction"
+ lazy val ballerinaContainerImageName = "action-ballerina-v0.975"
override def withActionContainer(env: Map[String, String] = Map.empty)(code:
ActionContainer => Unit) = {
withContainer(ballerinaContainerImageName, env)(code)
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services