Skip to content

Commit

Permalink
build(repo): correct docker username
Browse files Browse the repository at this point in the history
  • Loading branch information
jwulf committed Apr 22, 2024
1 parent ca3c571 commit b6302d0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pr-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

- name: Set up Docker
run: |
echo ${{ secrets.DOCKER_PASSWORD }} | docker login --username joshua.wulf@camunda.com --password-stdin registry.camunda.cloud
echo ${{ secrets.DOCKER_PASSWORD }} | docker login --username joshua.wulf --password-stdin registry.camunda.cloud
- name: Set up Docker Compose
run: |
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:

- name: Set up Docker
run: |
echo ${{ secrets.DOCKER_PASSWORD }} | docker login --username joshua.wulf@camunda.com --password-stdin registry.camunda.cloud
echo ${{ secrets.DOCKER_PASSWORD }} | docker login --username joshua.wulf --password-stdin registry.camunda.cloud
- name: Set up Docker Compose
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:

- name: Set up Docker
run: |
echo ${{ secrets.DOCKER_PASSWORD }} | docker login --username joshua.wulf@camunda.com --password-stdin registry.camunda.cloud
echo ${{ secrets.DOCKER_PASSWORD }} | docker login --username joshua.wulf --password-stdin registry.camunda.cloud
- name: Set up Docker Compose
run: |
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:

- name: Set up Docker
run: |
echo ${{ secrets.DOCKER_PASSWORD }} | docker login --username joshua.wulf@camunda.com --password-stdin registry.camunda.cloud
echo ${{ secrets.DOCKER_PASSWORD }} | docker login --username joshua.wulf --password-stdin registry.camunda.cloud
- name: Set up Docker Compose
run: |
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/operate/operate-integration.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ test('getJSONVariablesforProcess works', async () => {
})

// Wait for Operate to catch up.
await new Promise((res) => setTimeout(() => res(null), 7000))
await new Promise((res) => setTimeout(() => res(null), 12000))
// Make sure that the process instance exists in Operate.
const process = await c.getProcessInstance(p.processInstanceKey)
// If this fails, it is probably a timing issue.
Expand Down

0 comments on commit b6302d0

Please sign in to comment.