File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4848 - name : Set up Docker Buildx
4949 uses : simplex-chat/docker-setup-buildx-action@v3
5050
51+ - name : Install PostgreSQL 15 client tools
52+ if : matrix.os == '22.04'
53+ shell : bash
54+ run : |
55+ # Import the repository signing key
56+ sudo install -d /usr/share/postgresql-common/pgdg
57+ sudo curl -o /usr/share/postgresql-common/pgdg/apt.postgresql.org.asc --fail https://www.postgresql.org/media/keys/ACCC4CF8.asc
58+ # Add the PostgreSQL APT repository
59+ sudo sh -c 'echo "deb [signed-by=/usr/share/postgresql-common/pgdg/apt.postgresql.org.asc] https://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
60+ # Update repository and install postgresql tools
61+ sudo apt update
62+ sudo apt -y install postgresql-client-15
63+
5164 - name : Build and cache Docker image
5265 uses : simplex-chat/docker-build-push-action@v6
5366 with :
You can’t perform that action at this time.
0 commit comments