Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions .github/workflows/release-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
arch: arm64
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: jdx/mise-action@v4
- uses: Swatinem/rust-cache@v2
- name: build
Expand Down Expand Up @@ -50,13 +50,18 @@ jobs:
pg: 18
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: jdx/mise-action@v4
- uses: Swatinem/rust-cache@v2
- name: install postgres dev headers
run: |
sudo apt-get install -y gnupg2 lsb-release libclang-dev clang
wget -qO- https://www.postgresql.org/media/keys/ACCC4cf8.asc \
set -euo pipefail
sudo apt-get update
sudo apt-get install -y gnupg2 lsb-release libclang-dev clang curl
# Retry the key fetch — a transient empty response makes gpg fail with
# "no valid OpenPGP data found".
curl -fsSL --retry 5 --retry-all-errors \
https://www.postgresql.org/media/keys/ACCC4cf8.asc \
| sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/pgdg.gpg
echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" \
| sudo tee /etc/apt/sources.list.d/pgdg.list
Expand Down