Skip to content

Commit

Permalink
chore: new CLI (#19)
Browse files Browse the repository at this point in the history
## fixes [#2835](KILTprotocol/ticket#2835)
  • Loading branch information
Ad96el authored Feb 15, 2024
1 parent 18f5b4d commit f44eb91
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

- name: set image name
run: |
echo "IMG_NAME=${{ steps.login-ecr.outputs.registry }}/kilt/prototype-chain:latest" >> "$GITHUB_ENV"
echo "IMG_NAME=${{ steps.login-ecr.outputs.registry }}/kiltprotocol/prototype-chain:latest" >> "$GITHUB_ENV"
- name: pull image
run: docker pull $IMG_NAME
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ jobs:
- name: set image name
run: |
echo "IMG_NAME=${{ steps.login-ecr.outputs.registry }}/kilt/prototype-chain:latest" >> "$GITHUB_ENV"
- name: pull image
run: docker pull $IMG_NAME

Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ yarn-error.log
/.vscode
/esm/**


*.js
*.d.ts

/.vscode
2 changes: 1 addition & 1 deletion src/tests/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ export async function startContainer(): Promise<string> {
const image = process.env.TESTCONTAINERS_NODE_IMG || 'kiltprotocol/mashnet-node'
console.log(`using testcontainer with image ${image}`)
const testcontainer = new GenericContainer(image)
.withCommand(['--dev', `--ws-port=${WS_PORT}`, '--ws-external'])
.withCommand(['--dev', `--rpc-port=${WS_PORT}`, '--rpc-external'])
.withExposedPorts(WS_PORT)
.withWaitStrategy(Wait.forLogMessage(`:${WS_PORT}`))
const started = await testcontainer.start()
Expand Down

0 comments on commit f44eb91

Please sign in to comment.