Skip to content

Commit

Permalink
Release workflow needs libidn (#538)
Browse files Browse the repository at this point in the history
Use ubuntu-22.04 so that doesn't change to 24.04 that we haven't tested yet.
  • Loading branch information
dentarg authored Jun 21, 2024
1 parent 83bb919 commit cb5eb74
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,18 @@ 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:
# tags are named addressable-VERSION, e.g. addressable-2.8.6
- 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
Expand Down

0 comments on commit cb5eb74

Please sign in to comment.