chore: just install docker-ce-cli
Some checks failed
migrate-devel / migrate-devel (push) Failing after 46s

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

View File

@ -12,10 +12,19 @@ jobs:
apt-get install -y curl ca-certificates gnupg postgresql-common apt-get install -y curl ca-certificates gnupg postgresql-common
YES=y sh /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh YES=y sh /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh
apt-get install -y postgresql-15 apt-get install -y postgresql-15
- name: 'install postgres' - name: 'install docker-ce-cli'
run: | run: |
curl -fsSL https://get.docker.com -o /tmp/get-docker.sh apt-get update
sh /tmp/get-docker.sh install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg
chmod a+r /etc/apt/keyrings/docker.gpg
echo \
"deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian \
"$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | \
tee /etc/apt/sources.list.d/docker.list > /dev/null
apt-get update
apt-get install -y docker-ce-cli docker-compose-plugin
- run: './scripts/migrate.sh' - run: './scripts/migrate.sh'
env: env:
POSTGRES_URI: '${{ secrets.POSTGRES_DEVEL_URI }}' POSTGRES_URI: '${{ secrets.POSTGRES_DEVEL_URI }}'