From: Tom Hughes Date: Thu, 25 Aug 2022 19:23:51 +0000 (+0100) Subject: Use rails instead of rake X-Git-Tag: live~1617 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/5abccc2e5e848dcc76cdaa87e83f5320f5b6385b Use rails instead of rake --- diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index a96b576ff..6f88614ab 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -26,8 +26,8 @@ jobs: sleep 15 # let the DB warm up a little - name: Prepare Database run: | - docker-compose run --rm web bundle exec rake db:migrate - docker-compose run web bundle exec rake i18n:js:export + docker-compose run --rm web bundle exec rails db:migrate + docker-compose run --rm web bundle exec rails i18n:js:export docker-compose run --rm web osmosis --rx docker/null-island.osm.xml --wd host=db database=openstreetmap user=openstreetmap password=openstreetmap validateSchemaVersion=no - name: Test Basic Website run: |