chore: undo ci runs-on docker
Some checks failed
migrate-devel / migrate-devel (push) Failing after 1m36s

This commit is contained in:
Orion Kindel 2023-06-27 12:17:43 -05:00
parent bfbd8ffb7b
commit f9dfc02b98
Signed by untrusted user who does not match committer: orion
GPG Key ID: 6D4165AE4C928719

View File

@ -3,7 +3,6 @@ on: {push: {branches: ['main']}}
jobs:
migrate-devel:
runs-on: 'docker'
steps:
- uses: 'actions/checkout@v3'
- name: 'install postgres'
@ -13,6 +12,10 @@ jobs:
apt-get install -y curl ca-certificates gnupg postgresql-common
YES=y sh /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh
apt-get install -y postgresql-15
- name: 'install postgres'
run: |
curl -fsSL https://get.docker.com -o /tmp/get-docker.sh
sh /tmp/get-docker.sh
- run: './scripts/migrate.sh'
env:
POSTGRES_URI: '${{ secrets.POSTGRES_DEVEL_URI }}'