Skip to content

Commit

Permalink
bump ver
Browse files Browse the repository at this point in the history
  • Loading branch information
donaldoakes committed Nov 11, 2023
1 parent d6510e9 commit d9bea80
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
File renamed without changes.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ FROM node:18
WORKDIR /usr/src/executor
COPY runner /bin/runner
RUN chmod +x /bin/runner
COPY ./ /usr/src/executor
COPY dist /usr/src/executor/dist
COPY node_modules /usr/src/executor/node_modules
COPY LICENSE /usr/src/executor/dist

CMD [ "/bin/runner" ]


6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ply-ct/ply-testkube",
"version": "1.1.1",
"version": "1.1.2",
"description": "Ply executor for testkube",
"license": "MIT",
"publisher": "ply-ct",
Expand All @@ -19,8 +19,8 @@
"ply-ver": "PLY_VER=$(jq -r .version ./node_modules/@ply-ct/ply/package.json) && echo export const plyVersion = \\'$PLY_VER\\'\\; >> src/version.ts",
"build": "npm run ver && npm run ply-ver && tsc",
"docker-build": "docker build -t plyct/ply-testkube .",
"docker-pull": "docker pull plyct/ply-testkube:1.1.1",
"docker-tag": "docker tag plyct/ply-testkube plyct/ply-testkube:1.1.1",
"docker-pull": "docker pull plyct/ply-testkube:1.1.2",
"docker-tag": "docker tag plyct/ply-testkube plyct/ply-testkube:1.1.2",
"create-exec": "kubectl testkube create executor --image plyct/ply-testkube --types ply-ct/test --name ply-executor",
"create-test": "kubectl testkube create test --name ply-demo --type ply-ct/test --git-uri https://github.com/ply-ct/ply-demo.git",
"run-test": "kubectl testkube run test ply-demo --args \"values-files=test/values/global.json,test/values/ply-ct.json test-files=test/requests/movie-queries.ply.yaml,test/flows/get-movies.ply.flow events=true\"",
Expand Down

0 comments on commit d9bea80

Please sign in to comment.