Skip to content

Commit

Permalink
1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
donaldoakes committed Nov 11, 2023
1 parent 4f0ca1f commit e77bf32
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ COPY runner /bin/runner
RUN chmod +x /bin/runner
COPY dist /usr/src/executor/dist
COPY node_modules /usr/src/executor/node_modules
COPY LICENSE /usr/src/executor/dist/LICENSE
COPY LICENSE /usr/src/executor/LICENSE

CMD [ "/bin/runner" ]

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ply-ct/ply-testkube",
"version": "1.2.0",
"version": "1.2.1",
"description": "Ply executor for testkube",
"license": "MIT",
"publisher": "ply-ct",
Expand All @@ -19,9 +19,9 @@
"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.2.0",
"docker-tag": "docker tag plyct/ply-testkube plyct/ply-testkube:1.2.0",
"create-exec": "kubectl testkube create executor --image plyct/ply-testkube --types ply-ct/test --name ply-executor",
"docker-pull": "docker pull plyct/ply-testkube:1.2.1",
"docker-tag": "docker tag plyct/ply-testkube plyct/ply-testkube:1.2.1",
"create-exec": "kubectl testkube create executor --image plyct/ply-testkube:1.2.1 --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\"",
"delete-exec": "kubectl testkube delete executor ply-executor",
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export const version = '1.2.0';
export const version = '1.2.1';
export const plyVersion = '3.2.18';

0 comments on commit e77bf32

Please sign in to comment.