Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .orycli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ pre_release_hooks:
- ./script/render-schemas.sh
- git config --unset user.email
- git config --unset user.name
- make update-quickstart
12 changes: 8 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -193,10 +193,14 @@ test-update-snapshots:
UPDATE_SNAPSHOTS=true go test -p 4 -tags sqlite -short ./...

.PHONY: post-release
post-release: .bin/yq
cat quickstart.yml | yq '.services.kratos.image = "oryd/kratos:'$$DOCKER_TAG'"' | sponge quickstart.yml
cat quickstart.yml | yq '.services.kratos-migrate.image = "oryd/kratos:'$$DOCKER_TAG'"' | sponge quickstart.yml
cat quickstart.yml | yq '.services.kratos-selfservice-ui-node.image = "oryd/kratos-selfservice-ui-node:'$$DOCKER_TAG'"' | sponge quickstart.yml
post-release:
echo "nothing to do here"

.PHONY: update-quickstart
update-quickstart: .bin/yq
cat quickstart.yml | yq '.services.kratos.image = "oryd/kratos:'$$NEXT_VERSION'"' | sponge quickstart.yml
cat quickstart.yml | yq '.services.kratos-migrate.image = "oryd/kratos:'$$NEXT_VERSION'"' | sponge quickstart.yml
cat quickstart.yml | yq '.services.kratos-selfservice-ui-node.image = "oryd/kratos-selfservice-ui-node:'$$NEXT_VERSION'"' | sponge quickstart.yml

licenses: .bin/licenses node_modules # checks open-source licenses
.bin/licenses
Expand Down