fix: gen_migrations committing, logging, gitmodule
This commit is contained in:
parent
26c2c9ca6a
commit
b9d80dd04f
@ -21,7 +21,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
set -ex
|
set -ex
|
||||||
git submodule update --init --remote migrations;
|
git submodule update --init --remote migrations;
|
||||||
if ! (git diff-index --quiet --cached HEAD --); then
|
if ! (git diff-index --quiet HEAD --ignore-submodules=none); then
|
||||||
git add -A
|
git add -A
|
||||||
git commit -m 'chore: update migrations'
|
git commit -m 'chore: update migrations'
|
||||||
git push
|
git push
|
||||||
@ -30,7 +30,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
./scripts/gen_migrations.sh
|
./scripts/gen_migrations.sh
|
||||||
cd migrations
|
cd migrations
|
||||||
if ! (git diff-index --quiet --cached HEAD --); then
|
if ! (git diff-index --quiet HEAD --ignore-submodules=none); then
|
||||||
git add -A
|
git add -A
|
||||||
git commit -m 'chore: babe wake up new migrations just dropped'
|
git commit -m 'chore: babe wake up new migrations just dropped'
|
||||||
git push
|
git push
|
||||||
|
4
.gitmodules
vendored
4
.gitmodules
vendored
@ -1,6 +1,4 @@
|
|||||||
[submodule "migrations"]
|
[submodule "migrations"]
|
||||||
|
branch = migrations
|
||||||
path = migrations
|
path = migrations
|
||||||
url = git@git.orionkindel.com:dnim/db
|
url = git@git.orionkindel.com:dnim/db
|
||||||
branch = migrations
|
|
||||||
[submodule "migraionts"]
|
|
||||||
branch = migrations
|
|
||||||
|
@ -41,5 +41,5 @@ cp .env.schema "./$base_or_head/.env.schema"
|
|||||||
cd "./$base_or_head"
|
cd "./$base_or_head"
|
||||||
docker compose up --wait --wait-timeout 30 -d "$base_or_head"
|
docker compose up --wait --wait-timeout 30 -d "$base_or_head"
|
||||||
|
|
||||||
initdb || (docker compose logs "$base_or_head" && exit 1)
|
initdb
|
||||||
ls ./schema/ | xargs -I{} bash -c "set -e; $(declare -f query_file); query_file \"$(db dnim)\" ./schema/{}" || (docker compose logs "$base_or_head" && exit 1)
|
ls ./schema/ | xargs -I{} bash -c "set -e; $(declare -f query_file); query_file \"$(db dnim)\" ./schema/{}"
|
||||||
|
Loading…
Reference in New Issue
Block a user