Skip to content

Commit

Permalink
Release kraken 0.4.12
Browse files Browse the repository at this point in the history
  • Loading branch information
ArmaanT committed Feb 18, 2021
1 parent 92a64f2 commit d810043
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 9 deletions.
4 changes: 4 additions & 0 deletions cdk/kraken/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.4.12 (2021-02-17)

* Hotfix deploy job part 2

## 0.4.11 (2021-02-17)

* Hotfix deploy job
Expand Down
2 changes: 1 addition & 1 deletion cdk/kraken/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
],
"main": "lib/index.js",
"license": "MIT",
"version": "0.4.11",
"version": "0.4.12",
"jest": {
"clearMocks": true,
"collectCoverage": true,
Expand Down
4 changes: 2 additions & 2 deletions cdk/kraken/src/postintegrationimagepublishjob.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ export class PostIntegrationPublishJob extends CheckoutJob {
},
},
{
name: 'Load docker images',
run: fullConfig.dockerImages.map(image => `docker push ${image}`).join('\n'),
name: 'Push docker images',
run: fullConfig.dockerImages.map(image => `docker push -a ${image}`).join('\n'),
},
],
...overrides,
Expand Down
4 changes: 2 additions & 2 deletions cdk/kraken/test/__snapshots__/integration-tests.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ done",
},
},
Object {
"name": "Load docker images",
"run": "docker push image",
"name": "Push docker images",
"run": "docker push -a image",
},
],
},
Expand Down
6 changes: 3 additions & 3 deletions cdk/kraken/test/__snapshots__/labs-application.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -379,10 +379,10 @@ jobs:
with:
username: \${{ secrets.DOCKER_USERNAME }}
password: \${{ secrets.DOCKER_PASSWORD }}
- name: Load docker images
- name: Push docker images
run: |-
docker push pennlabs/example-backend
docker push pennlabs/example-frontend
docker push -a pennlabs/example-backend
docker push -a pennlabs/example-frontend
needs: integration-tests
deploy:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion cdk/kraken/version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "0.4.11"
"version": "0.4.12"
}

0 comments on commit d810043

Please sign in to comment.