Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
💚 [maykinmedia/objects-api#509] Use master branch in quickstart job
Browse files Browse the repository at this point in the history
stevenbal committed Jan 3, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 88daa70 commit 4904d4d
Showing 2 changed files with 6 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/quick_start.yml
Original file line number Diff line number Diff line change
@@ -8,9 +8,12 @@ jobs:
steps:
- name: Download docker-compose file
# todo replace branch name with master after the change is merge
run: wget https://raw.githubusercontent.com/maykinmedia/objecttypes-api/feature/merge-docker-composes/docker-compose.yml
run: wget https://raw.githubusercontent.com/maykinmedia/objecttypes-api/issue/fix-quickstart-job/docker-compose.yml
- name: Download setup-configuration data file
run: wget -P docker/setup_configuration https://raw.githubusercontent.com/maykinmedia/objecttypes-api/master/docker/setup_configuration/data.yaml
- name: Start docker containers
run: docker compose up -d --no-build
run: |
docker compose up --no-build || docker compose logs web-init
- name: Wait for migrations to finish
run: |
echo "Waiting for migrations to complete..."
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -31,6 +31,7 @@ services:
condition: service_completed_successfully

web-init:
image: maykinmedia/objecttypes-api:latest
build: .
environment:
<<: *app-env

0 comments on commit 4904d4d

Please sign in to comment.