Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds migrate to distributions #142

Merged
merged 1 commit into from
Sep 10, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,7 @@ Currently supported distributions are:
- [lsd](https://github.com/Peltoche/lsd)
- [mcfly](https://github.com/cantino/mcfly)
- [micro](https://github.com/zyedidia/micro)
- [migrate](https://github.com/golang-migrate/migrate)
- [minikube](https://github.com/kubernetes/minikube)
- [mysql_random_data_load](https://github.com/Percona-Lab/mysql_random_data_load)
- [naabu](https://github.com/projectdiscovery/naabu)
Expand Down
12 changes: 12 additions & 0 deletions distributions/distributions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1579,6 +1579,18 @@ sources:
binaries:
- micro

migrate:
description: CLI database migrations tool.
list:
type: github-releases
url: https://api.github.com/repos/golang-migrate/migrate/releases
fetch:
url: https://github.com/golang-migrate/migrate/releases/download/v{{ .Version }}/migrate.{{ .OS }}-{{ .Arch }}.tar.gz
install:
type: tgz
binaries:
- ./migrate.{{ .OS }}-{{ .Arch }}

minikube:
description: Run Kubernetes locally
list:
Expand Down