From cb5eb7493e2705b379b8d2a1f5457cd3c1daf22b Mon Sep 17 00:00:00 2001 From: Patrik Ragnarsson Date: Fri, 21 Jun 2024 12:38:39 +0200 Subject: [PATCH] Release workflow needs libidn (#538) Use ubuntu-22.04 so that doesn't change to 24.04 that we haven't tested yet. --- .github/workflows/release.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5c848922..32ac5312 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,7 +8,7 @@ on: jobs: release: if: github.repository == 'sporkmonger/addressable' - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 permissions: id-token: write # for trusted publishing steps: @@ -16,6 +16,10 @@ jobs: - name: Set VERSION from git tag run: echo "VERSION=$(echo ${{ github.ref }} | cut -d - -f 2)" >> "$GITHUB_ENV" + - name: Install libidn + if: startsWith(matrix.os, 'ubuntu') + run: sudo apt-get install libidn11-dev + - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1